This commit is contained in:
Alexey Kudravtsev
2017-02-28 13:11:37 +03:00
parent a1642c8101
commit 76041465dc
5 changed files with 12 additions and 13 deletions
@@ -61,7 +61,7 @@ public class VisibilityInspection extends GlobalJavaBatchInspectionTool {
public boolean SUGGEST_PACKAGE_LOCAL_FOR_MEMBERS = true;
public boolean SUGGEST_PACKAGE_LOCAL_FOR_TOP_CLASSES = true;
public boolean SUGGEST_PRIVATE_FOR_INNERS;
private Map<String, Boolean> myExtensions = new TreeMap<>();
private final Map<String, Boolean> myExtensions = new TreeMap<>();
private static final String DISPLAY_NAME = InspectionsBundle.message("inspection.visibility.display.name");
@NonNls public static final String SHORT_NAME = "WeakerAccess";
private static final String CAN_BE_PRIVATE = InspectionsBundle.message("inspection.visibility.compose.suggestion", VisibilityUtil.toPresentableText(PsiModifier.PRIVATE));