浏览代码

remove final from class declaration in scrabble-score exercise

vivshaw 9 年前
父节点
当前提交
639ea79cff
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      exercises/scrabble-score/src/main/java/Scrabble.java

+ 1
- 1
exercises/scrabble-score/src/main/java/Scrabble.java 查看文件

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