mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
13 lines
217 B
Java
13 lines
217 B
Java
// "Replace lambda with method reference" "false"
|
|
class Example {
|
|
private void m() { }
|
|
|
|
{
|
|
Example e = null;
|
|
Runnable unusedRunnable = () -> <caret>e.m();
|
|
}
|
|
|
|
interface I {
|
|
void n(Example e);
|
|
}
|
|
} |