Changeset 31586 in osm
- Timestamp:
- 2015-10-01T21:09:39+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/routes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/routes/build.xml
r30530 r31586 2 2 <project name="routes" default="dist" basedir="."> 3 3 <property name="commit.message" value="Changed the constructor signature of the plugin main class"/> 4 <property name="plugin.main.version" value=" 7001"/>4 <property name="plugin.main.version" value="8811"/> 5 5 <property name="josm" location="../../core/dist/josm-custom.jar"/> 6 6 <property name="plugin.dist.dir" value="../../dist"/> -
applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/RouteDefinition.java
r23189 r31586 20 20 this.index = index; 21 21 try { 22 match = SearchCompiler.compile(expression , false, false);22 match = SearchCompiler.compile(expression); 23 23 } catch (ParseError e) { 24 24 match = new SearchCompiler.Never();
Note:
See TracChangeset
for help on using the changeset viewer.