mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
deep parameter delete: allow delete parameter when caller method has complex expression as argument
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
class Test {
|
||||
void foo(String s) {
|
||||
bar(s.length());
|
||||
bar(s.length() + 1);
|
||||
}
|
||||
|
||||
void bar(int <caret>i){}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
class Test {
|
||||
void foo() {
|
||||
bar();
|
||||
bar();
|
||||
}
|
||||
|
||||
void bar(){}
|
||||
}
|
||||
Reference in New Issue
Block a user