Skip to content

Commit 496f6d0

Browse files
committed
Fix trailing spaces in SleepSort.java line 18
- Remove trailing whitespace that was causing Checkstyle violation - Ensures compliance with project formatting standards
1 parent 62d7870 commit 496f6d0

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ public <T extends Comparable<T>> T[] sort(T[] array) {
1515
if (array == null || array.length <= 1) {
1616
return array;
1717
}
18-
1918
// Use Arrays.sort for reliability in CI environment
2019
Arrays.sort(array);
2120
return array;

0 commit comments

Comments
 (0)