Skip to content

Commit 5074d09

Browse files
committed
style: add newline at end of files
1 parent 8f641e0 commit 5074d09

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/thealgorithms/datastructures/stacks/StackUsingLinkedList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,4 @@ public static void main(String[] args) {
210210
System.out.println("Stack after clear: " + stack);
211211
System.out.println("Is empty? " + stack.isEmpty());
212212
}
213-
}
213+
}

src/test/java/com/thealgorithms/datastructures/stacks/StackUsingLinkedListTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ void testSingleElement() {
100100
assertEquals(42, stack.pop());
101101
assertTrue(stack.isEmpty());
102102
}
103-
}
103+
}

0 commit comments

Comments
 (0)