Index: trunk/src/com/kitfox/svg/Defs.java
===================================================================
--- trunk/src/com/kitfox/svg/Defs.java	(revision 8084)
+++ trunk/src/com/kitfox/svg/Defs.java	(revision 11525)
@@ -36,6 +36,4 @@
 package com.kitfox.svg;
 
-import java.util.Iterator;
-
 /**
  * @author Mark McKay
@@ -54,4 +52,5 @@
     }
 
+    @Override
     public String getTagName()
     {
@@ -63,4 +62,5 @@
      * each child tag that has been processed
      */
+    @Override
     public void loaderAddChild(SVGLoaderHelper helper, SVGElement child) throws SVGElementException
     {
@@ -70,10 +70,9 @@
     }
 
+    @Override
     public boolean updateTime(double curTime) throws SVGException
     {
         boolean stateChange = false;
-        for (Iterator it = children.iterator(); it.hasNext();)
-        {
-            SVGElement ele = (SVGElement) it.next();
+        for (SVGElement ele : children) {
             stateChange = stateChange || ele.updateTime(curTime);
         }
