Skip to content

Instantly share code, notes, and snippets.

@HDBandit
Created December 15, 2015 19:39
Show Gist options
  • Save HDBandit/e363553e4ceef3389447 to your computer and use it in GitHub Desktop.
Save HDBandit/e363553e4ceef3389447 to your computer and use it in GitHub Desktop.
List<Car> cars = filterCars(input, new CarChecker() {
public boolean check(Car car) {
return "Ferrari".equals(car.getBrand()) && "red".equals(car.getColor());
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment