lambda can be converted to method reference inspection

This commit is contained in:
anna
2012-10-09 15:51:41 +02:00
parent c4695e9e30
commit 0fbf5f2464
32 changed files with 774 additions and 1 deletions

View File

@@ -55,7 +55,7 @@ class MyTest2<X> {
public static void main(String[] args) {
I<String> s = MyTest2<String>::new;
s.m("");
//todo test(MyTest2<String>::new, "");
test(MyTest2<String>::new, "");
}
}