Changeset 514 in josm for trunk/src/org


Ignore:
Timestamp:
2008-01-08T15:03:52+01:00 (17 years ago)
Author:
gebner
Message:

SearchCompiler: Fix the Incomplete matcher.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/search/SearchCompiler.java

    r513 r514  
    151151        private static class Incomplete extends Match {
    152152                @Override public boolean match(OsmPrimitive osm) {
    153                         // return osm instanceof Way && ((Way)osm).isIncomplete();
    154             return false;
     153            return osm.incomplete;
    155154                }
    156155                @Override public String toString() {return "incomplete";}
Note: See TracChangeset for help on using the changeset viewer.