Sfoglia il codice sorgente

remove final from class declaration in luhn exercise

vivshaw 9 anni fa
parent
commit
a46b616860
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      exercises/luhn/src/main/java/LuhnValidator.java

+ 1
- 1
exercises/luhn/src/main/java/LuhnValidator.java Vedi File

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