Skip to content

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
ascandella committed Aug 18, 2015
1 parent cf53a72 commit 6c9ea63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

public class ConduitAPIClient {
private static final String API_TOKEN_KEY = "token";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ public DifferentialClient(String diffID, ConduitAPIClient conduit) {
public JSONObject postComment(String revisionID, String message, boolean silent, String action) throws IOException, ConduitAPIException {
JSONObject params = new JSONObject();
params.element("revision_id", revisionID)
.element("action", action)
.element("message", message)
.element("silent", silent);
.element("action", action)
.element("message", message)
.element("silent", silent);

return this.callConduit("differential.createcomment", params);
}
Expand Down

0 comments on commit 6c9ea63

Please sign in to comment.