- Timestamp:
- 2010-01-09T17:00:32+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/search/SearchCompiler.java
r2711 r2791 60 60 } 61 61 62 p rivatestatic class Always extends Match {62 public static class Always extends Match { 63 63 @Override public boolean match(OsmPrimitive osm) { 64 64 return true; 65 } 66 } 67 68 public static class Never extends Match { 69 @Override 70 public boolean match(OsmPrimitive osm) { 71 return false; 65 72 } 66 73 }
Note:
See TracChangeset
for help on using the changeset viewer.