redundant throws: filter out unchecked exception (IDEA-177478, IDEA-177506)

This commit is contained in:
Dmitry Batkovich
2017-08-14 10:47:25 +03:00
parent 4232f8dd41
commit 7fb26c249d
2 changed files with 9 additions and 1 deletions
@@ -0,0 +1,7 @@
// "Remove 'RuntimeException' from 'f' throws list" "false"
import java.io.*;
class a {
void f() throws <caret>RuntimeException {
}
}