mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
lambda -> method ref: reuse comment tracker (IDEA-189934)
This commit is contained in:
@@ -5,6 +5,8 @@ class Example {
|
||||
|
||||
{
|
||||
//my comments here
|
||||
//1
|
||||
//2
|
||||
Runnable r = this::m
|
||||
}
|
||||
}
|
||||
@@ -6,7 +6,10 @@ class Example {
|
||||
{
|
||||
Runnable r = () -> {
|
||||
//my comments here
|
||||
m<caret>();
|
||||
m<caret>()
|
||||
//1
|
||||
//2
|
||||
;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user