diff --git a/src/java/com/samskivert/util/SoftCache.java b/src/java/com/samskivert/util/SoftCache.java index 18e24bba..72cbe67f 100644 --- a/src/java/com/samskivert/util/SoftCache.java +++ b/src/java/com/samskivert/util/SoftCache.java @@ -22,7 +22,6 @@ package com.samskivert.util; import java.lang.ref.SoftReference; import java.util.HashMap; -import java.util.Map; /** * Implements a {@link SoftReference} cache wherein the values in the hashmap are not prevented @@ -48,7 +47,7 @@ public class SoftCache /** * Returns a reference to the underlying map. */ - public Map> getMap () + public HashMap> getMap () { return _map; }