瀏覽代碼

Merge pull request #705 from rootulp/patch-1

twelve-days: default sing method
FridaTveit 9 年之前
父節點
當前提交
7670be7db4
共有 1 個檔案被更改,包括 4 行新增0 行删除
  1. 4
    0
      exercises/twelve-days/src/main/java/TwelveDays.java

+ 4
- 0
exercises/twelve-days/src/main/java/TwelveDays.java 查看文件

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
 }