Skip to content

Commit c875570

Browse files
committed
Fix Checkstyle: add newline at end of FibonacciOptimized.java
1 parent 198277f commit c875570

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ static int fibonacci(int limit, int num1, int num2) {
2121
return fibonacci(limit - 1, num2, num1 + num2);
2222
}
2323
}
24-
}
24+
}

0 commit comments

Comments
 (0)