Fixed failing test due to compiler differences

This commit is contained in:
Keith Donald
2009-07-31 04:31:59 +00:00
parent 77b294fe59
commit a6330ca61e

View File

@@ -15,13 +15,13 @@ public class StringKeyedMapAdapterTests extends TestCase {
private Map contents = new HashMap();
private StringKeyedMapAdapter map = new StringKeyedMapAdapter() {
private StringKeyedMapAdapter<Object> map = new StringKeyedMapAdapter<Object>() {
protected Object getAttribute(String key) {
return contents.get(key);
}
protected Iterator getAttributeNames() {
protected Iterator<String> getAttributeNames() {
return contents.keySet().iterator();
}