Changeset 29332 in osm for applications/editors/josm/plugins/proj4j/src
- Timestamp:
- 2013-03-03T15:10:54+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/proj4j/src/org/openstreetmap/josm/plugins/proj4j/Proj4JProjectionChoice.java
r28394 r29332 264 264 while ((s = fh.readLine()) != null) { 265 265 String f[] = s.split("\t"); 266 crsList.add(new CRSEntry(f[0], f[1], f[2])); 266 if (f.length >= 3) { 267 crsList.add(new CRSEntry(f[0], f[1], f[2])); 268 } 267 269 } 268 270 fh.close();
Note:
See TracChangeset
for help on using the changeset viewer.