mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
rename inspection/fix according to spec (IDEA-108821)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// "Replace with one line expression" "true"
|
||||
// "Replace with expression lambda" "true"
|
||||
class Test {
|
||||
{
|
||||
Comparable<String> c = (o) -> 0;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Replace with one line expression" "true"
|
||||
// "Replace with expression lambda" "true"
|
||||
class Test {
|
||||
{
|
||||
Runnable c = () -> System.out.println();
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Replace with one line expression" "true"
|
||||
// "Replace with expression lambda" "true"
|
||||
class Test {
|
||||
{
|
||||
Runnable c = () -> System.out.println();
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Replace with one line expression" "true"
|
||||
// "Replace with expression lambda" "true"
|
||||
class Test {
|
||||
{
|
||||
Comparable<String> c = (o) -> {r<caret>eturn 0;};
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Replace with one line expression" "false"
|
||||
// "Replace with expression lambda" "false"
|
||||
class Test {
|
||||
{
|
||||
Runnable c = () -> <caret>{foo();};
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Replace with one line expression" "true"
|
||||
// "Replace with expression lambda" "true"
|
||||
class Test {
|
||||
{
|
||||
Runnable c = () -> <caret>{System.out.println();};
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Replace with one line expression" "true"
|
||||
// "Replace with expression lambda" "true"
|
||||
class Test {
|
||||
{
|
||||
Runnable c = () -> <caret>{{System.out.println();}};
|
||||
|
||||
Reference in New Issue
Block a user