fix to fix for property delete problem
authorbrian <brian@brianweb.net>
Thu, 20 May 2004 18:00:43 +0000 (18:00 +0000)
committerbrian <brian@brianweb.net>
Thu, 20 May 2004 18:00:43 +0000 (18:00 +0000)
darcs-hash:20040520180043-24bed-67ad5d4ad4911f15d3969c01aa481388e87e9f91.gz

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;
         }