Index: applications/editors/josm/plugins/routes/build.xml
===================================================================
--- applications/editors/josm/plugins/routes/build.xml	(revision 18799)
+++ applications/editors/josm/plugins/routes/build.xml	(revision 18800)
@@ -35,5 +35,5 @@
                 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
                 <attribute name="Plugin-Description" value="Renders routes (bus, hiking trails, bicycle routes, ..). Route types must be defined in routes.xml file in plugin directory"/>
-                <attribute name="Plugin-Mainversion" value="2450"/>
+                <attribute name="Plugin-Mainversion" value="2511"/>
                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
             </manifest>
Index: applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/RouteDefinition.java
===================================================================
--- applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/RouteDefinition.java	(revision 18799)
+++ applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/RouteDefinition.java	(revision 18800)
@@ -28,10 +28,5 @@
 			
 	public boolean matches(OsmPrimitive primitive) {
-		try {
-			return match.match(primitive);
-		} catch (ParseError e) {
-			e.printStackTrace();
-			return false;
-		}
+		return match.match(primitive);
 	}
 	
