Changeset 35781 in osm for applications/editors
- Timestamp:
- 2021-07-15T01:26:51+02:00 (3 years ago)
- Location:
- applications/editors/josm/plugins/ColumbusCSV
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ColumbusCSV/.settings/org.eclipse.jdt.core.prefs
r34496 r35781 112 112 org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning 113 113 org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning 114 org.eclipse.jdt.core.compiler.release=disabled 114 115 org.eclipse.jdt.core.compiler.source=1.8 -
applications/editors/josm/plugins/ColumbusCSV/build.xml
r34639 r35781 4 4 <property name="commit.message" value="Commit message"/> 5 5 <!-- Enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="1 4221"/>6 <property name="plugin.main.version" value="17715"/> 7 7 8 8 <!-- Plugin meta data --> -
applications/editors/josm/plugins/ColumbusCSV/src/org/openstreetmap/josm/plugins/columbusCSV/ColumbusCSVReader.java
r34985 r35781 452 452 453 453 try { 454 wpt.set Time(sdf.parse(csvLine[2] + "/" + csvLine[3]));454 wpt.setInstant(sdf.parse(csvLine[2] + "/" + csvLine[3]).toInstant()); 455 455 } catch (ParseException ex) { 456 456 dateConversionErrors++;
Note:
See TracChangeset
for help on using the changeset viewer.