Ignore:
Timestamp:
2015-10-09T15:24:00+02:00 (9 years ago)
Author:
malcolmh
Message:

handle null attributes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/seachart/src/s57/S57val.java

    r31343 r31608  
    11791179                                        if (!str.isEmpty())
    11801180                                                str += ";";
    1181                                         str += ((S57enum) map.get(item)).val;
     1181                                        if (item != null)
     1182                                                str += ((S57enum) map.get(item)).val;
    11821183                                }
    11831184                                return str;
Note: See TracChangeset for help on using the changeset viewer.