mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
1. global and local inspections are merged to one 2. local inspection reports "non-final" methods (if cheap enough) IDEA-177230
10 lines
164 B
Java
10 lines
164 B
Java
// "Remove 'IOException' from 'f' throws list" "false"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
private void f() throws <caret>IOException {
|
|
throw new IOException();
|
|
}
|
|
}
|
|
|