Skip to content

Commit fa38e23

Browse files
jjaderbergIoannisPanagiotas
authored andcommitted
It's all about whitespace
1 parent ef65857 commit fa38e23

File tree

5 files changed

+192
-191
lines changed

5 files changed

+192
-191
lines changed

algo/src/main/java/org/neo4j/gds/steiner/LinkCutNode.java

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,25 @@ void setChild(LinkCutNode node, Direction direction) {
4646
}
4747
}
4848

49-
boolean getReversedBit() {return reverseBit;}
50-
51-
long source() {return source;}
49+
boolean getReversedBit() {
50+
return reverseBit;
51+
}
5252

53+
long source() {
54+
return source;
55+
}
5356

54-
LinkCutNode parent() {return up;}
57+
LinkCutNode parent() {
58+
return up;
59+
}
5560

56-
LinkCutNode left() {return left;}
61+
LinkCutNode left() {
62+
return left;
63+
}
5764

58-
LinkCutNode right() {return right;}
65+
LinkCutNode right() {
66+
return right;
67+
}
5968

6069
LinkCutNode root() {
6170
LinkCutNode current = this;
@@ -84,5 +93,4 @@ boolean isChildOf(LinkCutNode node) {
8493
static LinkCutNode createSingle(long id) {
8594
return new LinkCutNode(id, null);
8695
}
87-
8896
}

0 commit comments

Comments
 (0)