Changeset 1499 in josm for trunk/src/org/openstreetmap/josm/actions/search
- Timestamp:
- 2009-03-18T16:13:41+01:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/search/SearchCompiler.java
r1389 r1499 17 17 import org.openstreetmap.josm.data.osm.User; 18 18 import org.openstreetmap.josm.data.osm.Way; 19 import org.openstreetmap.josm.tools.DateUtils; 19 20 20 21 /** … … 146 147 147 148 if (key.equals("timestamp")) 148 value = osm.getTime Str();149 value = DateUtils.fromDate(osm.getTimestamp()); 149 150 else 150 151 value = osm.get(key); … … 315 316 private static class Untagged extends Match { 316 317 @Override public boolean match(OsmPrimitive osm) { 317 return !osm. tagged;318 return !osm.isTagged(); 318 319 } 319 320 @Override public String toString() {return "untagged";}
Note:
See TracChangeset
for help on using the changeset viewer.
