Changeset 30315 in osm for applications/editors/josm/plugins/smed2/src/panels/PanelS57.java
- Timestamp:
- 2014-03-02T12:17:41+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed2/src/panels/PanelS57.java
r30314 r30315 58 58 Scanner tin = new Scanner(new FileInputStream(ifc.getSelectedFile())); 59 59 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); 61 63 } 62 64 tin.close();
Note:
See TracChangeset
for help on using the changeset viewer.
