mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-12 22:56:11 +08:00
style: enable HideUtilityClassConstructor
in checkstyle (#5147)
This commit is contained in:
@ -8,7 +8,9 @@ package com.thealgorithms.maths;
|
||||
* @author Sokratis Fotkatzikis
|
||||
* @version 1.0
|
||||
*/
|
||||
public class RomanNumeralUtil {
|
||||
public final class RomanNumeralUtil {
|
||||
private RomanNumeralUtil() {
|
||||
}
|
||||
|
||||
private static final int MIN_VALUE = 1;
|
||||
private static final int MAX_VALUE = 5999;
|
||||
|
Reference in New Issue
Block a user