Skip to content

Commit aa4c1db

Browse files
committed
Fix clang-format: add newlines
1 parent 4f6e63b commit aa4c1db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/thealgorithms/sorts/BinaryTreeSort.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ private <T extends Comparable<T>> void inorder(TreeNode<T> root, List<T> result)
6464
inorder(root.right, result);
6565
}
6666
}
67-
}
67+
}

src/test/java/com/thealgorithms/sorts/BinaryTreeSortTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ public class BinaryTreeSortTest extends SortingAlgorithmTest {
55
SortAlgorithm getSortAlgorithm() {
66
return new BinaryTreeSort();
77
}
8-
}
8+
}

0 commit comments

Comments
 (0)