mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
introduce parameter: don't show conflicts between new param name and parameter to remove (IDEA-140607)
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
class Test {
|
||||
public void foo(final String anObject) {
|
||||
bar(anObject);
|
||||
}
|
||||
void bar(String f){}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
class Test {
|
||||
public void foo(Object anObject) {
|
||||
bar(anObject.toStrin<caret>g());
|
||||
}
|
||||
void bar(String f){}
|
||||
}
|
||||
Reference in New Issue
Block a user