From: brian Date: Thu, 20 May 2004 18:00:43 +0000 (+0000) Subject: fix to fix for property delete problem X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=commitdiff_plain;h=5133ba94f5c254918161f83630a7ddea5ef9ebb6 fix to fix for property delete problem darcs-hash:20040520180043-24bed-67ad5d4ad4911f15d3969c01aa481388e87e9f91.gz --- diff --git a/src/org/ibex/util/Hash.java b/src/org/ibex/util/Hash.java index 4ee02c8..11fe4d8 100644 --- a/src/org/ibex/util/Hash.java +++ b/src/org/ibex/util/Hash.java @@ -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; }