mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-15 02:56:20 +07:00
3555c35a3a
Refactoring-based class members manipulation is corrected
17 lines
219 B
Plaintext
17 lines
219 B
Plaintext
public class Y {
|
|
void method() {
|
|
System.out.println(this);
|
|
foo();
|
|
}
|
|
|
|
public void foo() {
|
|
}
|
|
}
|
|
public class X {
|
|
|
|
{
|
|
Y y = new Y();
|
|
y.method();
|
|
new Y().method();
|
|
}
|
|
} |