Skip to content

Commit 4e857f6

Browse files
committed
Fix clang-format: add newlines
1 parent 06718e9 commit 4e857f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,4 @@ private <T extends Comparable<T>> void trinkle(T[] array, int p, int head, int t
9696
array[head] = val;
9797
sift(array, p, head);
9898
}
99-
}
99+
}

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

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

0 commit comments

Comments
 (0)