From 5133ba94f5c254918161f83630a7ddea5ef9ebb6 Mon Sep 17 00:00:00 2001 From: brian Date: Thu, 20 May 2004 18:00:43 +0000 Subject: [PATCH] fix to fix for property delete problem darcs-hash:20040520180043-24bed-67ad5d4ad4911f15d3969c01aa481388e87e9f91.gz --- src/org/ibex/util/Hash.java | 1 + 1 file changed, 1 insertion(+) 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; } -- 1.7.10.4