inspection/intention to collapse/expand lambda body (IDEA-90827)

This commit is contained in:
Anna Kozlova
2012-08-30 22:10:37 +04:00
parent 33dc42146d
commit e48926ccb0
14 changed files with 302 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
// "Replace with one line expression" "true"
class Test {
{
Comparable<String> c = (o) -> 0;
}
}

View File

@@ -0,0 +1,6 @@
// "Replace with one line expression" "true"
class Test {
{
Comparable<String> c = (o) -> {r<caret>eturn 0};
}
}