Changeset 30315 in osm for applications/editors/josm/plugins/smed2/js57toosm/src/js57toosm/Js57toosm.java
- Timestamp:
- 2014-03-02T12:17:41+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed2/js57toosm/src/js57toosm/Js57toosm.java
r30314 r30315 43 43 Scanner tin = new Scanner(new FileInputStream(args[1])); 44 44 while (tin.hasNext()) { 45 types.add(S57obj.enumType(tin.next())); 45 Obj type = S57obj.enumType(tin.next()); 46 if (type != Obj.UNKOBJ) 47 types.add(type); 46 48 } 47 49 tin.close();
Note:
See TracChangeset
for help on using the changeset viewer.