mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
1. global and local inspections are merged to one 2. local inspection reports "non-final" methods (if cheap enough) IDEA-177230
8 lines
240 B
Java
8 lines
240 B
Java
// "Suppress for method" "true"
|
|
import java.io.FileNotFoundException;
|
|
import java.io.IOException;
|
|
|
|
class Main {
|
|
@SuppressWarnings("RedundantThrowsDeclaration")
|
|
public void test() throws Exception, FileNotFoundException, IOException {}
|
|
} |