diff --git a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/afterBoxed.java b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/afterBoxed.java index 147015b41c73..71cdd4dec8c2 100644 --- a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/afterBoxed.java +++ b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/afterBoxed.java @@ -1,4 +1,4 @@ -// "Remove redundant arguments to match 'method(int, Integer)'" "true" +// "Remove redundant arguments to call 'method(int, Integer)'" "true" class A { public A() { method(new Integer(5), 5); diff --git a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/afterGeneric.java b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/afterGeneric.java index 75331d9786fb..ae462e09f556 100644 --- a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/afterGeneric.java +++ b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/afterGeneric.java @@ -1,4 +1,4 @@ -// "Remove redundant arguments to match 'method(int, T)'" "true" +// "Remove redundant arguments to call 'method(int, T)'" "true" class A { public A() { method(5, new Exception()); diff --git a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/afterSimple.java b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/afterSimple.java index a5977febd94e..7da7927a1df1 100644 --- a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/afterSimple.java +++ b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/afterSimple.java @@ -1,4 +1,4 @@ -// "Remove redundant arguments to match 'method(int, String)'" "true" +// "Remove redundant arguments to call 'method(int, String)'" "true" class A { public A() { method(5, ""); diff --git a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/beforeBoxed.java b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/beforeBoxed.java index 118b2acccecb..f53689bd6ac6 100644 --- a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/beforeBoxed.java +++ b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/beforeBoxed.java @@ -1,4 +1,4 @@ -// "Remove redundant arguments to match 'method(int, Integer)'" "true" +// "Remove redundant arguments to call 'method(int, Integer)'" "true" class A { public A() { method(new Integer(5), 5, "", new String()); diff --git a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/beforeGeneric.java b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/beforeGeneric.java index c648eaaf6b18..e3df640e7419 100644 --- a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/beforeGeneric.java +++ b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/beforeGeneric.java @@ -1,4 +1,4 @@ -// "Remove redundant arguments to match 'method(int, T)'" "true" +// "Remove redundant arguments to call 'method(int, T)'" "true" class A { public A() { method(5, new Exception(), new Exception(), "", 3); diff --git a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/beforeSimple.java b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/beforeSimple.java index 854fc6ee0d72..9cc0946dba1c 100644 --- a/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/beforeSimple.java +++ b/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/beforeSimple.java @@ -1,4 +1,4 @@ -// "Remove redundant arguments to match 'method(int, String)'" "true" +// "Remove redundant arguments to call 'method(int, String)'" "true" class A { public A() { method(5, "", 10);