Ignore:
Timestamp:
2010-12-29T23:18:37+01:00 (16 years ago)
Author:
pieren
Message:

Removed the building shapes recognition

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/WMSDownloadAction.java

    r20390 r24907  
    3030        if (Main.map != null) {
    3131            Layer activeLayer = Main.map.mapView.getActiveLayer();
    32             if (activeLayer instanceof WMSLayer && !((WMSLayer)activeLayer).isBuildingsOnly())
     32            if (activeLayer instanceof WMSLayer)
    3333                return (WMSLayer) activeLayer;
    3434            for (Layer l : Main.map.mapView.getAllLayers()) {
    35                 if (l instanceof WMSLayer && !((WMSLayer)l).isBuildingsOnly()) {
     35                if (l instanceof WMSLayer) {
    3636                    existingWMSlayers.add((WMSLayer)l);
    3737                }
Note: See TracChangeset for help on using the changeset viewer.