Ignore:
Timestamp:
2015-10-01T21:09:39+02:00 (9 years ago)
Author:
simon04
Message:

JOSM/routes: refactor for breaking search API changes - see #josm11916

Location:
applications/editors/josm/plugins/routes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/routes/build.xml

    r30530 r31586  
    22<project name="routes" default="dist" basedir=".">
    33    <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"/>
    55    <property name="josm" location="../../core/dist/josm-custom.jar"/>
    66    <property name="plugin.dist.dir" value="../../dist"/>
  • applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/RouteDefinition.java

    r23189 r31586  
    2020        this.index = index;
    2121        try {
    22             match = SearchCompiler.compile(expression, false, false);
     22            match = SearchCompiler.compile(expression);
    2323        } catch (ParseError e) {
    2424            match = new SearchCompiler.Never();
Note: See TracChangeset for help on using the changeset viewer.