diff --git a/java/java-impl/src/com/intellij/codeInsight/daemon/impl/quickfix/RemoveRedundantArgumentsFix.java b/java/java-impl/src/com/intellij/codeInsight/daemon/impl/quickfix/RemoveRedundantArgumentsFix.java index 7802df0ff50d..d7aa814c5e02 100644 --- a/java/java-impl/src/com/intellij/codeInsight/daemon/impl/quickfix/RemoveRedundantArgumentsFix.java +++ b/java/java-impl/src/com/intellij/codeInsight/daemon/impl/quickfix/RemoveRedundantArgumentsFix.java @@ -39,7 +39,7 @@ public class RemoveRedundantArgumentsFix implements IntentionAction { private final PsiExpression[] myArguments; private final PsiSubstitutor mySubstitutor; - public RemoveRedundantArgumentsFix(@NotNull PsiMethod targetMethod, + private RemoveRedundantArgumentsFix(@NotNull PsiMethod targetMethod, @NotNull PsiExpression[] arguments, @NotNull PsiSubstitutor substitutor) { myTargetMethod = targetMethod;