Ignore:
Timestamp:
2015-07-23T02:16:21+02:00 (9 years ago)
Author:
Don-vip
Message:

fix QA issues (javadoc, findbugs, checkstyle)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Condition.java

    r8515 r8612  
    1313
    1414import org.openstreetmap.josm.Main;
    15 import org.openstreetmap.josm.actions.search.SearchCompiler;
     15import org.openstreetmap.josm.actions.search.SearchCompiler.InDataSourceArea;
    1616import org.openstreetmap.josm.data.osm.Node;
    1717import org.openstreetmap.josm.data.osm.OsmPrimitive;
     
    469469        }
    470470
    471         private static final Predicate<OsmPrimitive> IN_DOWNLOADED_AREA = new SearchCompiler.InDataSourceArea(false);
     471        private static final Predicate<OsmPrimitive> IN_DOWNLOADED_AREA = new InDataSourceArea(false);
    472472
    473473        /**
    474474         * {@code in-downloaded-area} tests whether the object is within source area ("downloaded area").
    475          * @see SearchCompiler.InDataSourceArea
     475         * @see InDataSourceArea
    476476         */
    477477        static boolean inDownloadedArea(Environment e) {
    478478            return IN_DOWNLOADED_AREA.evaluate(e.osm);
    479479        }
    480 
    481480    }
    482481
Note: See TracChangeset for help on using the changeset viewer.