mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
anonymous -> lambda: restore comments (non-javadoc) outside method body (IDEA-157286)
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
// "Replace with lambda" "true"
|
||||
|
||||
class Test {
|
||||
//my comment
|
||||
Runnable r = () -> {};
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Replace with lambda" "true"
|
||||
|
||||
class Test {
|
||||
Runnable r = new Ru<caret>nnable() {
|
||||
//my comment
|
||||
public void run () {}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user