mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
replace method duplicates on introduce parameter (IDEA-133303)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class Test {
|
||||
{
|
||||
foo("abc");
|
||||
}
|
||||
|
||||
void foo(final String anObject) {
|
||||
System.out.println(anObject);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
class Test {
|
||||
{
|
||||
System.out.println("abc");
|
||||
}
|
||||
|
||||
void foo() {
|
||||
System.out.println(<selection>""</selection>);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user