Skip to content

Commit

Permalink
recover old style
Browse files Browse the repository at this point in the history
  • Loading branch information
seagle-yuan committed May 4, 2022
1 parent 2912d48 commit 114cf51
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ public Object call(Job<Object> job, Map<String, Object> parameters) {

StringBuilder output = new StringBuilder();
try (LineNumberReader reader = new LineNumberReader(
new InputStreamReader(
process.getInputStream()))) {
new InputStreamReader(
process.getInputStream()))) {
String line;
while ((line = reader.readLine()) != null) {
output.append(line).append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
import com.baidu.hugegraph.util.E;

public class PropertyKeyBuilder extends AbstractBuilder
implements PropertyKey.Builder {
implements PropertyKey.Builder {

private Id id;
private String name;
Expand All @@ -69,8 +69,8 @@ public PropertyKeyBuilder(SchemaTransaction transaction,
this.checkExist = true;
}

public PropertyKeyBuilder(SchemaTransaction transaction, HugeGraph graph,
PropertyKey copy) {
public PropertyKeyBuilder(SchemaTransaction transaction,
HugeGraph graph, PropertyKey copy) {
super(transaction, graph);
E.checkNotNull(copy, "copy");
this.id = null;
Expand Down

0 comments on commit 114cf51

Please sign in to comment.