Files
openide/java/java-tests/testData/refactoring/inlineMethod/OnLambda.java
2017-08-24 18:16:56 +03:00

9 lines
126 B
Java

class Foo {
void m(Runnable r) {}
void ff(Runnable r) {
m(r);
}
{
f<caret>f(() -> {});
}
}