mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
15 lines
208 B
Java
15 lines
208 B
Java
// "Replace lambda with method reference" "true-preview"
|
|
class Example {
|
|
public void m() {
|
|
}
|
|
|
|
{
|
|
Runnable r = () -> {
|
|
//my comments here
|
|
m<caret>()
|
|
//1
|
|
//2
|
|
;
|
|
}
|
|
}
|
|
} |