Ignore:
Timestamp:
2017-02-25T03:14:20+01:00 (7 years ago)
Author:
Don-vip
Message:

fix #14402 - add blacklist for leisure area values to avoid false positives - improve globally the detection of keys/tags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/OsmDataLayer.java

    r11366 r11608  
    665665            Map<String, Object> trkAttr = new HashMap<>();
    666666
    667             if (w.get("name") != null) {
    668                 trkAttr.put("name", w.get("name"));
     667            String name = w.get("name");
     668            if (name != null) {
     669                trkAttr.put("name", name);
    669670            }
    670671
Note: See TracChangeset for help on using the changeset viewer.