mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
redundant lambda param types: take site subst into account
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
// "Remove redundant types" "true"
|
||||
import java.util.*;
|
||||
|
||||
public class Sample {
|
||||
List<String> foo = new ArrayList<>();
|
||||
{
|
||||
foo.forEach(s -> {});
|
||||
}
|
||||
}
|
||||
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
// "Remove redundant types" "true"
|
||||
import java.util.*;
|
||||
|
||||
public class Sample {
|
||||
List<String> foo = new ArrayList<>();
|
||||
{
|
||||
foo.forEach((Str<caret>ing s) -> {});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user