Skip to content

Commit beb01b2

Browse files
format correction
1 parent 6e39000 commit beb01b2

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,5 +113,4 @@ public int getSize() {
113113
public boolean isEmpty() {
114114
return head == null;
115115
}
116-
}
117-
116+
}

src/test/java/com/thealgorithms/datastructures/lists/SelfOrganizingLinkedListTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,4 @@ void testMultipleSearchesSequentialMoveToFront() {
8282
list.search(1); // Head becomes 1
8383
assertEquals(1, list.getHeadValue());
8484
}
85-
}
85+
}

0 commit comments

Comments
 (0)