fix to fix for property delete problem
[org.ibex.core.git] / src / org / ibex / util / Hash.java
index 4ee02c8..11fe4d8 100644 (file)
@@ -166,6 +166,7 @@ public class Hash {
         public Object nextElement() {
             if (iterator == keys1.length) throw new NoSuchElementException();
             Object o = keys1[iterator];
+            iterator++;
             findNext();
             return o;
         }