mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 07:40:42 +07:00
IDEA-205881 Remove redundant cast leads to incompilable code
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
import java.util.function.*;
|
||||
import java.util.*;
|
||||
|
||||
class Y {
|
||||
<T> List<T> filter(Collection<? extends T> collection,
|
||||
Predicate<? super T> condition) {return null;}
|
||||
boolean testString(String s) {return s.isEmpty();}
|
||||
List<Object> test(List<String> input, boolean b) {
|
||||
return b ? new ArrayList<>() : filter(input, o -> o instanceof String && testString((String)o));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user