replace method duplicates on introduce parameter (IDEA-133303)

This commit is contained in:
Anna Kozlova
2014-11-21 17:36:43 +01:00
parent ba71a3cb93
commit a68c236456
5 changed files with 81 additions and 15 deletions
@@ -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>);
}
}