mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
11 lines
259 B
Java
11 lines
259 B
Java
public class Test {
|
|
static Test <caret>method(final Test anObject) {
|
|
final Test[] result = new int[1];
|
|
new Runnable() {
|
|
public void run() {
|
|
result[0] = anObject;
|
|
}
|
|
}.run();
|
|
return result[0];
|
|
}
|
|
} |