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 0406a7f commit 504ec85Copy full SHA for 504ec85
src/main/java/org/gitlab/api/models/GitlabMergeRequest.java
@@ -251,15 +251,15 @@ public void setLabels(String[] labels) {
251
this.labels = labels;
252
}
253
254
- public int getUpvotes() {
+ public Integer getUpvotes() {
255
return upvotes;
256
257
258
public void setUpvotes(int upvotes) {
259
this.upvotes = upvotes;
260
261
262
- public int getDownvotes() {
+ public Integer getDownvotes() {
263
return downvotes;
264
265
@@ -352,7 +352,7 @@ public Boolean isShouldRemoveSourceBranch() {
352
return shouldRemoveSourceBranch;
353
354
355
- public boolean isForceRemoveSourceBranch() {
+ public Boolean isForceRemoveSourceBranch() {
356
return forceRemoveSourceBranch;
357
358
0 commit comments