You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hugegraph.apache.org by GitBox <gi...@apache.org> on 2022/09/04 12:50:30 UTC

[GitHub] [incubator-hugegraph-commons] javeme commented on a diff in pull request #105: refact: clean code & typo & update the name of getTimeZone

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: commits-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org