LambdaCanBeMethodReferenceInspection: support parenthesized call arguments

This commit is contained in:
Tagir Valeev
2018-07-05 13:20:39 +07:00
parent 1f87111c97
commit 52053135e8
2 changed files with 4 additions and 10 deletions

View File

@@ -8,6 +8,6 @@ class MyTest2<X> {
}
public static void main(String[] args) {
I<String> s = (z) -> new MyTe<caret>st2<String>(z);
I<String> s = (z) -> new MyTe<caret>st2<String>((z));
}
}