mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
for "Convert to instance method" refactoring GitOrigin-RevId: a4bb1ef732d71359e52ed778f9ad36c776533e47
12 lines
177 B
Java
12 lines
177 B
Java
class X {
|
|
|
|
class Inner {
|
|
static void <caret>print(X x) {
|
|
System.out.println(x);
|
|
}
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
Inner.print(new X());
|
|
}
|
|
} |