mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
17 lines
383 B
Java
17 lines
383 B
Java
class MyUpdate {
|
|
|
|
public static MyUpdate createUpdate(Container <caret>extensionsContainer) {
|
|
System.out.println("extensionsContainer = " + extensionsContainer);
|
|
return new MyUpdate();
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
MyUpdate.createUpdate(Container.empty());
|
|
}
|
|
}
|
|
|
|
class Container {
|
|
public static Container empty() {
|
|
return new Container();
|
|
}
|
|
} |