Browse Source

twelve-days: default sing method

Rootul Patel 9 years ago
parent
commit
0f372b3823
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      exercises/twelve-days/src/main/java/TwelveDays.java

+ 4
- 0
exercises/twelve-days/src/main/java/TwelveDays.java View File

6
     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
+    
10
+    String sing() {
11
+        throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
12
+    }
9
 }
13
 }