Fix #3897
This commit is contained in:
parent
2add93bde0
commit
0069da5538
1 changed files with 2 additions and 1 deletions
|
@ -168,7 +168,8 @@ public class MapPoiTypes {
|
|||
|
||||
public Map<String, PoiType> getAllTranslatedNames(boolean skipNonEditable) {
|
||||
Map<String, PoiType> translation = new HashMap<String, PoiType>();
|
||||
for (PoiCategory pc : categories) {
|
||||
for (int i = 0; i < categories.size(); i++) {
|
||||
PoiCategory pc = categories.get(i);
|
||||
if (skipNonEditable && pc.isNotEditableOsm()) {
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue