Skip to content

Commit 8ef0aae

Browse files
committed
chore(fix:style): fix Maven checkstyle
Each variable declaration must be in its own statement. [MultipleVariableDeclarations]
1 parent 5d0ac0f commit 8ef0aae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/com/thealgorithms/datastructures/trees/SplayTree.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ public class SplayTree {
2929

3030
private static class Node {
3131
int key;
32-
Node left, right;
32+
Node left;
33+
Node right;
3334

3435
Node(int key) {
3536
this.key = key;

0 commit comments

Comments
 (0)