mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
ChangeStringLiteralToCharInMethodCallFix: support parenthesized args
This commit is contained in:
+1
-1
@@ -3,6 +3,6 @@ class Simple {
|
||||
public void m1(final int i, final char ch) {}
|
||||
|
||||
public void test() {
|
||||
m1("does not matter", <caret>'1');
|
||||
m1("does not matter", (('1')));
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -3,6 +3,6 @@ class Simple {
|
||||
public void m1(final int i, final char ch) {}
|
||||
|
||||
public void test() {
|
||||
m1("does not matter", <caret>"1");
|
||||
m1("does not matter", ((<caret>"1")));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user