mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-20 05:06:53 +07:00
16 lines
343 B
Java
16 lines
343 B
Java
import com.google.common.collect.Iterables;
|
|
import com.google.common.base.Predicate;
|
|
|
|
import java.lang.String;
|
|
import java.util.Collections;
|
|
|
|
class c {
|
|
void m() {
|
|
Iterables.f<caret>ind(Collections.emptyList(), new Predicate<String>() {
|
|
@Override
|
|
public boolean apply(String input) {
|
|
return true;
|
|
}
|
|
});
|
|
}
|
|
} |