yangxk1 commented on code in PR #683:
URL: https://github.com/apache/incubator-graphar/pull/683#discussion_r2113474253


##########
maven-projects/info/src/main/java/org/apache/graphar/info/saver/LocalYamlGraphSaver.java:
##########
@@ -19,23 +19,26 @@
 
 package org.apache.graphar.info.saver;
 
-import org.apache.graphar.info.EdgeInfo;
-import org.apache.graphar.info.GraphInfo;
-import org.apache.graphar.info.VertexInfo;
-
 import java.io.BufferedWriter;
 import java.io.IOException;
 import java.nio.file.FileSystems;
 import java.nio.file.Files;
 import java.nio.file.Path;
+import org.apache.graphar.info.EdgeInfo;
+import org.apache.graphar.info.GraphInfo;
+import org.apache.graphar.info.VertexInfo;
 
 public class LocalYamlGraphSaver implements GraphSaver {
 
     @Override
     public void save(String path, GraphInfo graphInfo) throws IOException {
-        final Path outputPath = FileSystems
-            .getDefault()
-            .getPath(path + FileSystems.getDefault().getSeparator() + 
graphInfo.getName() + ".graph.yaml");
+        final Path outputPath =
+                FileSystems.getDefault()
+                        .getPath(
+                                path
+                                        + 
FileSystems.getDefault().getSeparator()
+                                        + graphInfo.getName()
+                                        + ".graph.yaml");

Review Comment:
   It's formatted by mvn Spotless



-- 
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-unsubscr...@graphar.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@graphar.apache.org
For additional commands, e-mail: commits-h...@graphar.apache.org

Reply via email to