Selaa lähdekoodia

remove final from class declaration in acronym exercise

vivshaw 9 vuotta sitten
vanhempi
commit
935866e72a
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1
    1
      exercises/acronym/src/main/java/Acronym.java

+ 1
- 1
exercises/acronym/src/main/java/Acronym.java Näytä tiedosto

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