lambda -> method ref: reuse comment tracker (IDEA-189934)

This commit is contained in:
Anna.Kozlova
2019-02-04 15:09:56 +01:00
parent c33423601a
commit 1ace9ab2c3
5 changed files with 12 additions and 9 deletions

View File

@@ -5,6 +5,8 @@ class Example {
{
//my comments here
//1
//2
Runnable r = this::m
}
}

View File

@@ -6,7 +6,10 @@ class Example {
{
Runnable r = () -> {
//my comments here
m<caret>();
m<caret>()
//1
//2
;
}
}
}