Show
Ignore:
Timestamp:
09/05/08 02:30:42 (4 months ago)
Author:
arneke
Message:

Hooking zoomStart and zoomStop up to grid object instead of layer. More robust at looking for geowebcache.xml

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/geowebcache/src/main/java/org/geowebcache/layer/TileLayerDispatcher.java

    r301 r388  
    103103        HashMap<String, TileLayer> layers = new HashMap<String, TileLayer>(); 
    104104 
    105         Iterator configIter = configs.iterator(); 
     105        Iterator<Configuration> configIter = configs.iterator(); 
    106106        while (configIter.hasNext()) { 
    107107            Map<String, TileLayer> configLayers = null; 
    108108 
    109             Configuration config = (Configuration) configIter.next(); 
     109            Configuration config = configIter.next(); 
    110110 
    111111            try { 
     
    113113            } catch (GeoWebCacheException gwce) { 
    114114                log.error(gwce.getMessage()); 
    115                 log 
    116                         .error("Failed to add layers from " 
     115                log.error("Failed to add layers from " 
    117116                                + config.getIdentifier()); 
    118117            }