LambdaCanBeMethodReferenceInspection: allow parenthesized qualifier

This commit is contained in:
Tagir Valeev
2019-03-25 10:57:30 +07:00
parent ce8a9647c4
commit 8fa34c7dbe
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ class Test<T> {
class Bar {
void f( ){
Function<Test<T>.Bar, String> r = (Test<T>.Bar t) -> t.fo<caret>o();
Function<Test<T>.Bar, String> r = (Test<T>.Bar t) -> (t).fo<caret>o();
}
private String foo() {}