Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/suppressNonInspections/before3.java
Alexey Kudravtsev 615818a8d2 optimization: convert to visitor to avoid multiple instanceof checks
GitOrigin-RevId: 781e5a88a348d9af4579869cb39ff042f871b78f
2023-08-24 15:59:36 +00:00

6 lines
138 B
Java

// "Suppress for method" "true"
import java.io.IOException;
class a implements Runnable {
public void run() throws <caret>IOException{
}
}