Index: trunk/src/com/kitfox/svg/ClipPath.java
===================================================================
--- trunk/src/com/kitfox/svg/ClipPath.java	(revision 8084)
+++ trunk/src/com/kitfox/svg/ClipPath.java	(revision 11525)
@@ -39,5 +39,4 @@
 import java.awt.Shape;
 import java.awt.geom.Area;
-import java.util.Iterator;
 
 /**
@@ -60,4 +59,5 @@
     }
 
+    @Override
     public String getTagName()
     {
@@ -69,4 +69,5 @@
      * each child tag that has been processed
      */
+    @Override
     public void loaderAddChild(SVGLoaderHelper helper, SVGElement child) throws SVGElementException
     {
@@ -74,4 +75,5 @@
     }
 
+    @Override
     protected void build() throws SVGException
     {
@@ -103,7 +105,6 @@
 
         Area clipArea = null;
-        for (Iterator it = children.iterator(); it.hasNext();)
-        {
-            ShapeElement se = (ShapeElement) it.next();
+        for (SVGElement svgElement : children) {
+            ShapeElement se = (ShapeElement) svgElement;
 
             if (clipArea == null)
@@ -136,4 +137,5 @@
      * @throws com.kitfox.svg.SVGException
      */
+    @Override
     public boolean updateTime(double curTime) throws SVGException
     {
