mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
13 lines
249 B
Java
13 lines
249 B
Java
class Test {
|
|
public void test(final String anObject) {
|
|
new Runnable() {
|
|
public void run() {
|
|
System.out.println(anObject);
|
|
}
|
|
}.run();
|
|
}
|
|
|
|
public void use() {
|
|
test("");
|
|
}
|
|
} |