We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf2e74 commit b6e8890Copy full SHA for b6e8890
src/main/java/org/gitlab/api/models/GitlabIssue.java
@@ -47,7 +47,7 @@ public enum Action {
47
48
@JsonDeserialize(using = LocalDateDeserializer.class)
49
@JsonProperty("due_date")
50
- private LocalDate dueDate;
+ private Date dueDate;
51
52
private Boolean confidential;
53
@@ -174,11 +174,11 @@ public void setDownVotes(Integer downVotes) {
174
this.downVotes = downVotes;
175
}
176
177
- public LocalDate getDueDate() {
+ public Date getDueDate() {
178
return dueDate;
179
180
181
- public void setDueDate(LocalDate dueDate) {
+ public void setDueDate(Date dueDate) {
182
this.dueDate = dueDate;
183
184
0 commit comments