mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
for "Convert to instance method" refactoring GitOrigin-RevId: a4bb1ef732d71359e52ed778f9ad36c776533e47
13 lines
163 B
Plaintext
13 lines
163 B
Plaintext
class X {
|
|
|
|
void print() {
|
|
System.out.println(this);
|
|
}
|
|
|
|
class Inner {
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
new X().print();
|
|
}
|
|
} |