Changeset 18800 in osm for applications


Ignore:
Timestamp:
2009-11-25T18:29:18+01:00 (15 years ago)
Author:
stoecker
Message:

fix build issue

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

Legend:

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

    r18597 r18800  
    3535                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    3636                <attribute name="Plugin-Description" value="Renders routes (bus, hiking trails, bicycle routes, ..). Route types must be defined in routes.xml file in plugin directory"/>
    37                 <attribute name="Plugin-Mainversion" value="2450"/>
     37                <attribute name="Plugin-Mainversion" value="2511"/>
    3838                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3939            </manifest>
  • applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/RouteDefinition.java

    r16444 r18800  
    2828                       
    2929        public boolean matches(OsmPrimitive primitive) {
    30                 try {
    31                         return match.match(primitive);
    32                 } catch (ParseError e) {
    33                         e.printStackTrace();
    34                         return false;
    35                 }
     30                return match.match(primitive);
    3631        }
    3732       
Note: See TracChangeset for help on using the changeset viewer.