Changeset 16444 in osm for applications/editors/josm/plugins/routes/src/org
- Timestamp:
- 2009-07-11T19:48:02+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/routes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/routes
-
Property svn:ignore
set to
build
-
Property svn:ignore
set to
-
applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/RouteDefinition.java
r16428 r16444 28 28 29 29 public boolean matches(OsmPrimitive primitive) { 30 return match.match(primitive); 30 try { 31 return match.match(primitive); 32 } catch (ParseError e) { 33 e.printStackTrace(); 34 return false; 35 } 31 36 } 32 37
Note:
See TracChangeset
for help on using the changeset viewer.