blob: 0a23829bb222ee14b1d2e9fd68f76835cf19b5ef [file] [log] [blame]
import java.util.*;
public class Runner {
public static void main(String[] args) {
List<Process> src;
List<Process> dest = ListUtils.filter(src, new Pred<Process>() {
@Override
public boolean predicate(Process elem) {
<selection><caret>return false;</selection>
}
});
}
}