mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
15 lines
322 B
Java
15 lines
322 B
Java
// "Replace with lambda" "false"
|
|
class MyTest {
|
|
final Runnable anonymRunnable = new Run<caret>nable() {
|
|
@Override
|
|
public void run() {
|
|
System.out.println(o);
|
|
}
|
|
};
|
|
|
|
final Object o;
|
|
|
|
MyTest(Object o) {
|
|
this.o = o;
|
|
}
|
|
} |