mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-28 06:55:02 +08:00
style: enable HideUtilityClassConstructor
in checkstyle (#5147)
This commit is contained in:
@ -15,7 +15,9 @@ import java.util.Scanner;
|
||||
* Problem Statement: print all Fibonacci numbers that are smaller than your
|
||||
* given input N
|
||||
*/
|
||||
public class FibbonaciSeries {
|
||||
public final class FibbonaciSeries {
|
||||
private FibbonaciSeries() {
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
// Get input from the user
|
||||
|
Reference in New Issue
Block a user