Ignore:
Timestamp:
2017-01-07T00:56:52+01:00 (7 years ago)
Author:
Don-vip
Message:

fix #14199 - JOSM drops empty tags on loading and thus prevents correcting them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/AbstractPrimitive.java

    r11373 r11435  
    538538    public void put(String key, String value) {
    539539        Map<String, String> originalKeys = getKeys();
    540         if (key == null || Utils.strip(key).isEmpty())
     540        if (key == null || Utils.isStripEmpty(key))
    541541            return;
    542542        else if (value == null) {
Note: See TracChangeset for help on using the changeset viewer.