Skip to content

Commit 011642f

Browse files
Fixed Formatting
1 parent 2ad6265 commit 011642f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ private static List<Integer> merge(List<Integer> arr) {
4343
if (arr.size() <= 1) {
4444
return arr;
4545
}
46-
47-
4846
int arrLength = arr.size();
4947
int half = arrLength / 2;
5048

0 commit comments

Comments
 (0)