Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/suppress15Inspections/beforeDuplicatesThrowsOnWrongException.java
T
Dmitry Batkovich 52cf50c461 redundant throws inspection:
1. global and local inspections are merged to one
2. local inspection reports "non-final" methods (if cheap enough) IDEA-177230
2017-08-09 12:14:26 +03:00

7 lines
197 B
Java

// "Suppress for method" "true"
import java.io.FileNotFoundException;
import java.io.IOException;
class Main {
public void test() throws Exce<caret>ption, FileNotFoundException, IOException {}
}