Skip to content

Commit 0a5495d

Browse files
committed
Removed few whitespaces
1 parent 25be88e commit 0a5495d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/com/thealgorithms/datastructures/lists/SortedLinkedList.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public boolean delete(int value) {
8484
}
8585
temp = temp.next;
8686
}
87-
return false;
87+
return false;
8888
}
8989
}
9090

@@ -160,6 +160,5 @@ public Node(int value) {
160160
this.value = value;
161161
this.next = null;
162162
}
163-
164163
}
165164
}

0 commit comments

Comments
 (0)