Changeset 4347 in josm
- Timestamp:
- 2011-08-26T22:36:26+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/search/SearchCompiler.java
r4346 r4347 576 576 protected String getCountString() { 577 577 return "tags"; 578 } 579 } 580 581 private static class New extends Match { 582 @Override public boolean match(OsmPrimitive osm) { 583 return osm.isNew(); 584 } 585 @Override public String toString() { 586 return "new"; 578 587 } 579 588 } … … 770 779 } else if (tokenizer.readIfEqual(Token.QUESTION_MARK)) 771 780 return new BooleanMatch(key, false); 781 else if ("new".equals(key)) 782 return new New(); 772 783 else if ("modified".equals(key)) 773 784 return new Modified();
Note:
See TracChangeset
for help on using the changeset viewer.