Changeset 1921
- Timestamp:
- 11/07/07 11:25:05 (13 months ago)
- Location:
- trunk/components/server
- Files:
-
- 1 added
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/components/server/src/ome/tools/HierarchyTransformations.java
r1167 r1921 14 14 import java.util.Set; 15 15 16 // Third-party libraries17 18 // Application-internal dependencies19 16 import ome.model.IObject; 20 17 import ome.model.containers.Category; 21 18 import ome.model.containers.CategoryGroup; 22 19 import ome.model.containers.Dataset; 20 import ome.model.containers.Project; 23 21 import ome.model.core.Image; 24 import ome.model.containers.Project;25 22 import ome.util.CBlock; 26 23 … … 42 39 while (i.hasNext()) { 43 40 Image img = (Image) block.call(i.next()); 41 block.call(img.getDefaultPixels()); // ticket:735 44 42 45 43 // Copy needed to prevent ConcurrentModificationExceptions … … 93 91 while (i.hasNext()) { 94 92 Image img = (Image) block.call(i.next()); 93 block.call(img.getDefaultPixels()); // ticket:735 95 94 96 95 // Copy needed to prevent ConcurrentModificationExceptions
