extract method: resolve conflicts during params rename (IDEABKL-3749)

This commit is contained in:
Anna Kozlova
2014-12-05 13:48:55 +01:00
parent bdb4735349
commit 37841f9d73
4 changed files with 34 additions and 1 deletions
@@ -0,0 +1,11 @@
class X {
public static void main(String[] args) {
boolean _user = true;
String user = "foo";
newMethod(_user, user);
}
private static void newMethod(boolean user, String user2) {
System.out.println(user + " " + user2);
}
}