Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/suppressNonInspections/after3.java
2010-06-25 12:46:40 +04:00

7 lines
166 B
Java

// "Suppress for method" "true"
import java.io.IOException;
class a {
/** @noinspection RedundantThrowsDeclaration*/
private void run() throws <caret>IOException{
}
}