mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-25 20:36:22 +07:00
12 lines
186 B
Java
12 lines
186 B
Java
interface Am {
|
|
}
|
|
|
|
class AIIm implements Am {
|
|
private String getIcon() {
|
|
return null;
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
new AIIm().getIcon();
|
|
}
|
|
} |