mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Java inspection: In batch mode avoid indicating the problem twice with "Split Multi-Catch into Separate Catch Blocks" inspection (IDEA-157727)
This commit is contained in:
+1
-1
@@ -112,7 +112,7 @@ public class SplitMultiCatchInspection extends BaseInspection {
|
||||
@Override
|
||||
public void visitKeyword(PsiKeyword keyword) {
|
||||
super.visitKeyword(keyword);
|
||||
if (isAcceptable(keyword)) {
|
||||
if (isOnTheFly() && isAcceptable(keyword)) {
|
||||
registerError(keyword);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user