mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
disable INFORMATION level in batch results
GitOrigin-RevId: 85654b7dce5da02115b934a9274e6e3a732c976a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
acff0e52df
commit
7fdfe09817
+3
-1
@@ -92,7 +92,9 @@ public class MultipleVariablesInDeclarationInspection extends BaseInspection {
|
||||
}
|
||||
if (highlightType == ProblemHighlightType.INFORMATION
|
||||
|| InspectionProjectProfileManager.isInformationLevel(getShortName(), statement)) {
|
||||
registerError(statement, highlightType);
|
||||
if (isOnTheFly()) {
|
||||
registerError(statement, highlightType);
|
||||
}
|
||||
}
|
||||
else {
|
||||
final PsiElement nameIdentifier = ((PsiVariable)declaredElements[0]).getNameIdentifier();
|
||||
|
||||
Reference in New Issue
Block a user