mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
- use layout table GitOrigin-RevId: 6862419acc2beb72f87cca6b93612f9afe81f698
17 lines
209 B
Java
17 lines
209 B
Java
package main;
|
|
|
|
import aaa.AAA;
|
|
import module java.base;
|
|
import bbb.BBB;
|
|
import ccc.CCC;
|
|
|
|
public class Main {
|
|
void usage() {
|
|
new ArrayList<>();
|
|
new AAA();
|
|
new BBB();
|
|
new CCC();
|
|
x();
|
|
}
|
|
}
|