mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
extract method: resolve conflicts during params rename (IDEABKL-3749)
This commit is contained in:
+11
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user