Ignore:
Timestamp:
2014-03-02T12:17:41+01:00 (12 years ago)
Author:
malcolmh
Message:

save

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed2/src/panels/PanelS57.java

    r30314 r30315  
    5858                        Scanner tin = new Scanner(new FileInputStream(ifc.getSelectedFile()));
    5959                        while (tin.hasNext()) {
    60                                 types.add(S57obj.enumType(tin.next()));
     60                                Obj type = S57obj.enumType(tin.next());
     61                                if (type != Obj.UNKOBJ)
     62                                        types.add(type);
    6163                        }
    6264                        tin.close();
Note: See TracChangeset for help on using the changeset viewer.