Skip to content
This repository has been archived by the owner on Apr 2, 2019. It is now read-only.

Commit

Permalink
SONARGITUB-35 Fix int overflow by using github-api 1.90
Browse files Browse the repository at this point in the history
  • Loading branch information
henryju committed Oct 31, 2017
1 parent 4cf2b6d commit 0aacae3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<dependency>
<groupId>org.kohsuke</groupId>
<artifactId>github-api</artifactId>
<version>1.76</version>
<version>1.90</version>
</dependency>
<!-- Override version used by GitHub API -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class PullRequestFacade {
private Map<String, Map<Integer, GHPullRequestReviewComment>> existingReviewCommentsByLocationByFile = new HashMap<>();
private GHRepository ghRepo;
private GHPullRequest pr;
private Map<Integer, GHPullRequestReviewComment> reviewCommentToBeDeletedById = new HashMap<>();
private Map<Long, GHPullRequestReviewComment> reviewCommentToBeDeletedById = new HashMap<>();
private File gitBaseDir;
private String myself;

Expand Down

0 comments on commit 0aacae3

Please sign in to comment.