From 8a0423af9cf112e583888e939a298f90180d6319 Mon Sep 17 00:00:00 2001 From: "Roman.Ivanov" Date: Fri, 25 May 2018 18:07:33 +0700 Subject: [PATCH] minor, reformat --- .../WrapperTypeMayBePrimitiveInspection.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/java/java-impl/src/com/intellij/codeInspection/WrapperTypeMayBePrimitiveInspection.java b/java/java-impl/src/com/intellij/codeInspection/WrapperTypeMayBePrimitiveInspection.java index ad2d63a61538..5ff36a38c162 100644 --- a/java/java-impl/src/com/intellij/codeInspection/WrapperTypeMayBePrimitiveInspection.java +++ b/java/java-impl/src/com/intellij/codeInspection/WrapperTypeMayBePrimitiveInspection.java @@ -42,10 +42,10 @@ public class WrapperTypeMayBePrimitiveInspection extends AbstractBaseJavaLocalIn static CallMatcher getValueOfMatcher() { CallMatcher[] matchers = JvmPrimitiveTypeKind.getBoxedFqns() .stream() - .filter(fqn -> !fqn.equals(CommonClassNames.JAVA_LANG_CHARACTER)) - .map(fqn -> CallMatcher.staticCall(fqn, "valueOf") - .parameterTypes(CommonClassNames.JAVA_LANG_STRING)) - .toArray(size -> new CallMatcher[size]); + .filter(fqn -> !fqn.equals(CommonClassNames.JAVA_LANG_CHARACTER)) + .map(fqn -> CallMatcher.staticCall(fqn, "valueOf") + .parameterTypes(CommonClassNames.JAVA_LANG_STRING)) + .toArray(size -> new CallMatcher[size]); return CallMatcher.anyOf(matchers); }