mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-27 06:23:08 +08:00
style: enable HideUtilityClassConstructor
in checkstyle (#5147)
This commit is contained in:
@ -3,7 +3,9 @@ package com.thealgorithms.maths;
|
||||
/**
|
||||
* @author https://github.com/shellhub/
|
||||
*/
|
||||
public class GCDRecursion {
|
||||
public final class GCDRecursion {
|
||||
private GCDRecursion() {
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println(gcd(20, 15));
|
||||
|
Reference in New Issue
Block a user