mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
disable inspection by default: looks like it should be an intention action with highlighting at code editing place only
This commit is contained in:
+1
-1
@@ -36,7 +36,7 @@ public class SuperClassHasFrequentlyUsedInheritorsInspection extends BaseJavaBat
|
||||
|
||||
@Override
|
||||
public boolean isEnabledByDefault() {
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
|
||||
@@ -627,7 +627,7 @@
|
||||
implementationClass="com.intellij.codeInspection.magicConstant.MagicConstantInspection" />
|
||||
<localInspection language="JAVA" shortName="SuperClassHasFrequentlyUsedInheritors"
|
||||
groupBundle="messages.InspectionsBundle"
|
||||
groupKey="group.names.inheritance.issues" enabledByDefault="true" level="WARNING"
|
||||
groupKey="group.names.inheritance.issues" enabledByDefault="false" level="WARNING"
|
||||
implementationClass="com.intellij.codeInspection.inheritance.SuperClassHasFrequentlyUsedInheritorsInspection"
|
||||
displayName="Class may extend a commonly used base class instead of implementing interface"/>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user