mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
12 lines
197 B
Java
12 lines
197 B
Java
// "Replace with lambda" "true-preview"
|
|
class X1 {
|
|
Runnable m() {
|
|
String s;
|
|
return new Run<caret>nable() {
|
|
@Override
|
|
public void run() {
|
|
String s;
|
|
}
|
|
};
|
|
}
|
|
} |