javeme commented on code in PR #105:
URL: 
https://github.com/apache/incubator-hugegraph-commons/pull/105#discussion_r962308795


##########
hugegraph-common/src/main/java/com/baidu/hugegraph/rest/RestClient.java:
##########
@@ -25,30 +25,30 @@
 
 public interface RestClient {
 
-    public RestResult post(String path, Object object);
-    public RestResult post(String path, Object object,
+    RestResult post(String path, Object object);
+    RestResult post(String path, Object object,
                            MultivaluedMap<String, Object> headers);
-    public RestResult post(String path, Object object,
+    RestResult post(String path, Object object,
                            Map<String, Object> params);
-    public RestResult post(String path, Object object,
+    RestResult post(String path, Object object,
                            MultivaluedMap<String, Object> headers,
                            Map<String, Object> params);
 
-    public RestResult put(String path, String id, Object object);
-    public RestResult put(String path, String id, Object object,
+    RestResult put(String path, String id, Object object);
+    RestResult put(String path, String id, Object object,

Review Comment:
   also update alignment



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to