Skip to content

Commit 3baf525

Browse files
fix build
1 parent 9573563 commit 3baf525

File tree

1 file changed

+6
-6
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+6
-6
lines changed

Diff for: src/main/java/com/fishercoder/solutions/_426.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ private static class Node {
4141
public Node() {
4242
}
4343

44-
public Node(int _val) {
45-
val = _val;
44+
public Node(int val) {
45+
this.val = val;
4646
}
4747

48-
public Node(int _val, Node _left, Node _right) {
49-
val = _val;
50-
left = _left;
51-
right = _right;
48+
public Node(int val, Node left, Node right) {
49+
this.val = val;
50+
this.left = left;
51+
this.right = right;
5252
}
5353
}
5454
}

0 commit comments

Comments
 (0)