Skip to content
This repository has been archived by the owner on Jul 6, 2021. It is now read-only.

Commit

Permalink
IterationId is optional and should not default to 0 (fix microsoft#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
henryju committed Feb 15, 2018
1 parent 4c6fc9d commit 4d613cf
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
public class GitPullRequestStatus
extends GitStatus {

private int iterationId;
private Integer iterationId;

public int getIterationId() {
public Integer getIterationId() {
return iterationId;
}

public void setIterationId(final int iterationId) {
public void setIterationId(final Integer iterationId) {
this.iterationId = iterationId;
}
}

0 comments on commit 4d613cf

Please sign in to comment.