mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
for "Convert to instance method" refactoring GitOrigin-RevId: a4bb1ef732d71359e52ed778f9ad36c776533e47
6 lines
72 B
Java
6 lines
72 B
Java
enum E {
|
|
A, B;
|
|
static boolean <caret>x(E e) {
|
|
return true;
|
|
}
|
|
} |