Skip to content

Commit

Permalink
Fix raw type warning
Browse files Browse the repository at this point in the history
  • Loading branch information
deiwin committed May 2, 2018
1 parent 611cd47 commit 66955d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public ExtendedCommitComment replyToComment2(final IRepositoryIdProvider reposit
uri.append("/pulls");
uri.append('/').append(pullRequestId);
uri.append("/comments");
Map<String, String> params = new HashMap();
Map<String, String> params = new HashMap<>();
params.put("in_reply_to", Integer.toString(commentId));
params.put("body", body);
return (ExtendedCommitComment)this.client.post(uri.toString(), params, ExtendedCommitComment.class);
Expand Down

0 comments on commit 66955d3

Please sign in to comment.