From a9343d976c616a3417ee9dff7747b52eaed0c814 Mon Sep 17 00:00:00 2001 From: "Roman.Ivanov" Date: Fri, 25 May 2018 18:12:05 +0700 Subject: [PATCH] minor, make method private --- .../codeInspection/WrapperTypeMayBePrimitiveInspection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))