mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
8 lines
141 B
Java
8 lines
141 B
Java
// "Replace with lambda" "true"
|
|
class Test {
|
|
Runnable r = new R<caret>unnable() {
|
|
public void run() {
|
|
"".toString();
|
|
}
|
|
};
|
|
} |