- Timestamp:
- 09/05/08 02:30:42 (4 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/geowebcache/src/main/java/org/geowebcache/layer/TileLayerDispatcher.java
r301 r388 103 103 HashMap<String, TileLayer> layers = new HashMap<String, TileLayer>(); 104 104 105 Iterator configIter = configs.iterator();105 Iterator<Configuration> configIter = configs.iterator(); 106 106 while (configIter.hasNext()) { 107 107 Map<String, TileLayer> configLayers = null; 108 108 109 Configuration config = (Configuration)configIter.next();109 Configuration config = configIter.next(); 110 110 111 111 try { … … 113 113 } catch (GeoWebCacheException gwce) { 114 114 log.error(gwce.getMessage()); 115 log 116 .error("Failed to add layers from " 115 log.error("Failed to add layers from " 117 116 + config.getIdentifier()); 118 117 }
