Changeset 29222 in osm for applications/editors/josm/plugins/public_transport
- Timestamp:
- 2013-01-31T14:39:51+01:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/public_transport
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/public_transport/build.xml
r28318 r29222 17 17 <project name="public_transport" default="dist" basedir="."> 18 18 <property name="josm.basedir" location="../.."/> 19 <property name="plugin.main.version" value="5679"/> 19 20 <!-- 20 21 ************************************************ 21 22 ** should not be necessary to change the following properties 22 23 --> 23 <property name="plugin.main.version" value="5053"/>24 24 <property name="josm" location="${josm.basedir}/core/dist/josm-custom.jar"/> 25 25 <property name="plugin.build.dir" value="build"/> -
applications/editors/josm/plugins/public_transport/src/public_transport/StopImporterAction.java
r26509 r29222 209 209 final GpxReader r = new GpxReader(is); 210 210 final boolean parsedProperly = r.parse(true); 211 data = r. data;211 data = r.getGpxData(); 212 212 213 213 if (!parsedProperly)
Note:
See TracChangeset
for help on using the changeset viewer.