Explorar el Código

Remove needless Exception from method signature

Fixes https://github.com/winterchord/xjava/commit/d09fb713d19abbcbdaaa979adb59aa7fc94532fd#commitcomment-14962172

The original PR (https://github.com/exercism/xjava/pull/69) that this issue
could have been fixed in was merged before I could fix this issue.
Brian Mathiyakom hace 10 años
padre
commit
9d85b5d5a0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      hello-world/src/test/java/HelloWorldTest.java

+ 1
- 1
hello-world/src/test/java/HelloWorldTest.java Ver fichero

16
     }
16
     }
17
 
17
 
18
     @Test
18
     @Test
19
-    public void helloAnotherSampleName() throws Exception {
19
+    public void helloAnotherSampleName() {
20
         assertEquals("Hello, Bob!", HelloWorld.hello("Bob"));
20
         assertEquals("Hello, Bob!", HelloWorld.hello("Bob"));
21
     }
21
     }
22
 }
22
 }