mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
17 lines
351 B
Java
17 lines
351 B
Java
// "Create method 'doSomething' in 'Test'" "true"
|
|
public class Test {
|
|
public static void main(String[] args) {
|
|
blaat(new Runnable() {
|
|
public void run() {
|
|
doSomething();
|
|
}
|
|
});
|
|
}
|
|
|
|
private static void doSomething() {
|
|
<caret>
|
|
}
|
|
|
|
public static void blaat(Runnable o) {}
|
|
}
|