From a6330ca61efece34184a3723d52e3eb0b1986a46 Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Fri, 31 Jul 2009 04:31:59 +0000 Subject: [PATCH] Fixed failing test due to compiler differences --- .../org/springframework/util/StringKeyedMapAdapterTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.springframework.core/src/test/java/org/springframework/util/StringKeyedMapAdapterTests.java b/org.springframework.core/src/test/java/org/springframework/util/StringKeyedMapAdapterTests.java index 13edc71867..bc888f011f 100644 --- a/org.springframework.core/src/test/java/org/springframework/util/StringKeyedMapAdapterTests.java +++ b/org.springframework.core/src/test/java/org/springframework/util/StringKeyedMapAdapterTests.java @@ -15,13 +15,13 @@ public class StringKeyedMapAdapterTests extends TestCase { private Map contents = new HashMap(); - private StringKeyedMapAdapter map = new StringKeyedMapAdapter() { + private StringKeyedMapAdapter map = new StringKeyedMapAdapter() { protected Object getAttribute(String key) { return contents.get(key); } - protected Iterator getAttributeNames() { + protected Iterator getAttributeNames() { return contents.keySet().iterator(); }