mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
PseudoFunctionStyleMethodInspection: detection of functional type improved
This commit is contained in:
@@ -6,9 +6,9 @@ import java.util.Collections;
|
||||
|
||||
class c {
|
||||
void m() {
|
||||
Iterables.f<caret>ind(Collections.emptyList(), new Predicate<Object>() {
|
||||
Iterables.f<caret>ind(Collections.emptyList(), new Predicate<String>() {
|
||||
@Override
|
||||
public boolean apply(Object input) {
|
||||
public boolean apply(String input) {
|
||||
return true;
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user