mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
17 lines
277 B
Java
17 lines
277 B
Java
// "Replace lambda with method reference" "false"
|
|
class Example {
|
|
{
|
|
new Object() {
|
|
void foo() {
|
|
}
|
|
|
|
void bar() {
|
|
new Object() {
|
|
void baz() {
|
|
Runnable runnable = () -> fo<caret>o();
|
|
}
|
|
};
|
|
}
|
|
};
|
|
}
|
|
} |