mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 14:17:48 +07:00
conflicts are resolved in UI GitOrigin-RevId: 4f09acaef74a6ee58026ffc4be93679a9aa75e07
12 lines
259 B
Java
12 lines
259 B
Java
class X {
|
|
public static void main(String[] args) {
|
|
boolean _user = true;
|
|
String user = "foo";
|
|
newMethod(_user, user);
|
|
}
|
|
|
|
private static void newMethod(boolean _user, String user) {
|
|
System.out.println(_user + " " + user);
|
|
}
|
|
}
|