Fix logic
This commit is contained in:
parent
843a1cd4db
commit
d2941687a8
1 changed files with 4 additions and 2 deletions
|
@ -578,8 +578,10 @@ public class PoiUIFilter implements SearchPoiTypeFilter, Comparable<PoiUIFilter>
|
|||
|
||||
private void putAllAcceptedTypes(Map<PoiCategory, LinkedHashSet<String>> types) {
|
||||
for (PoiCategory category : types.keySet()) {
|
||||
if (acceptedTypes.get(category) != null) {
|
||||
acceptedTypes.get(category).addAll(types.get(category));
|
||||
if (acceptedTypes.containsKey(category)) {
|
||||
if (acceptedTypes.get(category) != null) {
|
||||
acceptedTypes.get(category).addAll(types.get(category));
|
||||
}
|
||||
} else {
|
||||
acceptedTypes.put(category, types.get(category));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue