We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 372ea6c commit 045190bCopy full SHA for 045190b
README.md
@@ -16,7 +16,7 @@ The **UncheckedThrow** class uses type erasure to enable client code to throw ch
16
try {
17
value = URLDecoder.decode(keyVal[1], "UTF-8");
18
} catch (UnsupportedEncodingException e) {
19
- UncheckedThrow.throwUnchecked(e);
+ throw UncheckedThrow.throwUnchecked(e);
20
}
21
22
...
0 commit comments