Przeglądaj źródła

remove final from class declaration in luhn exercise

vivshaw 9 lat temu
rodzic
commit
a46b616860

+ 1
- 1
exercises/luhn/src/main/java/LuhnValidator.java Wyświetl plik

1
-final class LuhnValidator {
1
+class LuhnValidator {
2
 
2
 
3
     boolean isValid(String candidate) {
3
     boolean isValid(String candidate) {
4
         throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
4
         throw new UnsupportedOperationException("Delete this statement and write your own implementation.");