inline method to method reference: convert to lambda (IDEA-148481)

This commit is contained in:
Anna Kozlova
2016-01-11 18:53:47 +01:00
parent 53c8b26ae7
commit d8ea1bc2fe
12 changed files with 406 additions and 253 deletions
@@ -0,0 +1,11 @@
import java.util.function.Supplier;
class Test {
{
Supplier<String> sup = this::g<caret>et;
}
private String get() {
return null;
}
}