diff --git a/java/java-impl/src/com/intellij/codeInspection/WrapperTypeMayBePrimitiveInspection.java b/java/java-impl/src/com/intellij/codeInspection/WrapperTypeMayBePrimitiveInspection.java index 5ff36a38c162..79705a29c07d 100644 --- a/java/java-impl/src/com/intellij/codeInspection/WrapperTypeMayBePrimitiveInspection.java +++ b/java/java-impl/src/com/intellij/codeInspection/WrapperTypeMayBePrimitiveInspection.java @@ -39,7 +39,7 @@ public class WrapperTypeMayBePrimitiveInspection extends AbstractBaseJavaLocalIn ourReplacementMap.put(CommonClassNames.JAVA_LANG_BYTE, "parseByte"); } - static CallMatcher getValueOfMatcher() { + private static CallMatcher getValueOfMatcher() { CallMatcher[] matchers = JvmPrimitiveTypeKind.getBoxedFqns() .stream() .filter(fqn -> !fqn.equals(CommonClassNames.JAVA_LANG_CHARACTER))