Sfoglia il codice sorgente

twelve-days: remove public's from starter implementation

Logan Stucki 9 anni fa
parent
commit
5c29756841
No account linked to committer's email
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 3
    3
      exercises/twelve-days/src/main/java/TwelveDays.java

+ 3
- 3
exercises/twelve-days/src/main/java/TwelveDays.java Vedi File

1
-public class TwelveDays {
2
-    public String verse(int verseNumber) {
1
+class TwelveDays {
2
+    String verse(int verseNumber) {
3
         throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
3
         throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
4
     }
4
     }
5
 
5
 
6
-    public String verses(int startVerse, int endVerse) {
6
+    String verses(int startVerse, int endVerse) {
7
         throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
7
         throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
8
     }
8
     }
9
 }
9
 }