mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-31 08:47:02 +08:00
style: enable HideUtilityClassConstructor
in checkstyle (#5147)
This commit is contained in:
@ -9,7 +9,9 @@ import java.util.Set;
|
||||
* on the position of the characters in the conventional ordering of an
|
||||
* alphabet. Wikipedia: https://en.wikipedia.org/wiki/Alphabetical_order
|
||||
*/
|
||||
public class CheckVowels {
|
||||
public final class CheckVowels {
|
||||
private CheckVowels() {
|
||||
}
|
||||
|
||||
private static final Set<Character> VOWELS = new HashSet<>(Arrays.asList('a', 'e', 'i', 'o', 'u'));
|
||||
|
||||
|
Reference in New Issue
Block a user