Skip to content

Commit

Permalink
Remove unnecessary throws declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
claussni committed Sep 2, 2019
1 parent 0a59761 commit f0c810d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/de/slub/urn/NamespaceSpecificStringTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public void Unencoded_NamespaceSpecificString_get_encoded() throws URNSyntaxErro
}

@Test
public void Unescaped_whitespace_in_NamespaceSpecificString_throws_exception() throws Exception {
public void Unescaped_whitespace_in_NamespaceSpecificString_throws_exception() {
// https://en.wikipedia.org/wiki/Whitespace_character
String[] whitespaceStrings = new String[]{
"\u0009", "\u000B", "\u000C", "\u0020", "\u0085", "\u00A0", "\u1680", "\u2000", "\u2001", "\u2002",
Expand Down

0 comments on commit f0c810d

Please sign in to comment.