Skip to content

Commit f64a46a

Browse files
committed
fix: add newline at end of files for Checkstyle
1 parent 27e3b12 commit f64a46a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/main/java/com/thealgorithms/recursion/Factorial.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ public static long factorial(int n) {
3131
return n * factorial(n - 1);
3232
}
3333
}
34+

src/test/java/com/thealgorithms/recursion/FactorialTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ public void testNegativeNumberThrowsException() {
3333
assertThrows(IllegalArgumentException.class, () -> Factorial.factorial(-1));
3434
}
3535
}
36+

0 commit comments

Comments
 (0)