Changeset 18800 in osm for applications/editors/josm/plugins/routes
- Timestamp:
- 2009-11-25T18:29:18+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/routes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified applications/editors/josm/plugins/routes/build.xml ¶
r18597 r18800 35 35 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 36 36 <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="2 450"/>37 <attribute name="Plugin-Mainversion" value="2511"/> 38 38 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 39 39 </manifest> -
TabularUnified applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/RouteDefinition.java ¶
r16444 r18800 28 28 29 29 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); 36 31 } 37 32
Note:
See TracChangeset
for help on using the changeset viewer.