mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
13 lines
309 B
Java
13 lines
309 B
Java
import com.google.common.collect.Iterables;
|
|
import com.google.common.base.Predicate;
|
|
|
|
import java.lang.Iterable;
|
|
import java.util.HashMap;
|
|
import java.util.Collections;
|
|
import java.util.ArrayList;
|
|
|
|
class c {
|
|
void m() {
|
|
Iterable<HashMap> l = Iterables.fil<caret>ter(new ArrayList<>(), op -> false);
|
|
}
|
|
} |