mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
inspection/intention to collapse/expand lambda body (IDEA-90827)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
// "Replace with one line expression" "true"
|
||||
class Test {
|
||||
{
|
||||
Comparable<String> c = (o) -> 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
// "Replace with one line expression" "true"
|
||||
class Test {
|
||||
{
|
||||
Comparable<String> c = (o) -> {r<caret>eturn 0};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user