}
private Collection<Farm> getFarmsForCountry(Country country) {
List<Farm> farms = new LinkedList<Farm>();
for (Tile tile : mapService.getTiles()) {
Farm farm = farmService.getFarm(tile);
if (farm != null) {
if (country.equals(propertyService.getOwnership(tile))) {
farms.add(farm);
}
}