mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 00:19:11 +07:00
- first part. update for implicit static imports GitOrigin-RevId: 8c0fdf1c8ebd424a80e53b93c707fba02a07448a
12 lines
253 B
Java
12 lines
253 B
Java
public class beforeSimple {
|
|
private final String field = "field";
|
|
|
|
public static void main() {
|
|
System.out.println("Hello, world!");
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println("Hello, world!");
|
|
}
|
|
}
|