Fix compilation error

This commit is contained in:
Victor Shcherb 2016-06-14 00:45:25 +02:00
parent a555f89c99
commit b061f1877e

View file

@ -214,7 +214,7 @@ public class PoiUIFilter implements SearchPoiTypeFilter, Comparable<PoiUIFilter>
} }
if (amenityList.size() == 0 && isAutomaticallyIncreaseSearch()) { if (amenityList.size() == 0 && isAutomaticallyIncreaseSearch()) {
int step = 5; int step = 5;
while (amenityList.size() == 0 && step-- > 0 && isSearchFurtherAvailable() && !SearchPOIActivity.stopSearching) { while (amenityList.size() == 0 && step-- > 0 && isSearchFurtherAvailable()) {
amenityList = searchFurther(lat, lon, matcher); amenityList = searchFurther(lat, lon, matcher);
} }
} }