mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
13 lines
178 B
Java
13 lines
178 B
Java
// "Replace Implements with Static Import" "true"
|
|
|
|
import static I.FOO;
|
|
|
|
public class X {
|
|
void foo() {
|
|
System.out.println(FOO);
|
|
}
|
|
}
|
|
|
|
interface I {
|
|
String FOO = "foo";
|
|
} |