Changeset 393

Show
Ignore:
Timestamp:
09/08/08 11:47:51 (4 months ago)
Author:
arneke
Message:

Removing synchronization from seed info updates

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/geowebcache/src/main/java/org/geowebcache/rest/SeedTask.java

    r391 r393  
    111111                         
    112112                        int[][] list = SeedResource.getStatusList(); 
    113                         synchronized(list) {  
     113                         
     114                        // Threads don't really collide 
     115                        //synchronized(list) { 
     116                            // This is not quite right... 
    114117                            list[arrayIndex]= getStatusInfo(arrayIndex, tl, count, (TOTAL_TILES / threadCount), START_TIME); 
    115                         } 
     118                        //} 
    116119                    } 
    117120