diff options
Diffstat (limited to 'libjava/java/util')
-rw-r--r-- | libjava/java/util/Hashtable.java | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/libjava/java/util/Hashtable.java b/libjava/java/util/Hashtable.java index b0de0a2..d19b2fb 100644 --- a/libjava/java/util/Hashtable.java +++ b/libjava/java/util/Hashtable.java @@ -333,7 +333,11 @@ public class Hashtable extends Dictionary */ public synchronized boolean contains(Object value) { - return containsValue(value); + /* delegate to non-overridable worker method + * to avoid blowing up the stack, when called + * from overridden contains[Value]() method. + */ + return internalContainsValue(value); } /** @@ -350,6 +354,25 @@ public class Hashtable extends Dictionary */ public boolean containsValue(Object value) { + /* delegate to older method to make sure code overwriting it + * continues to work. + */ + return contains(value); + } + + /** + * Returns true if this Hashtable contains a value <code>o</code>, such that + * <code>o.equals(value)</code>. This is an internal worker method + * called by <code>contains()</code> and <code>containsValue()</code>. + * + * @param value the value to search for in this Hashtable + * @return true if at least one key maps to the value + * @see #contains(Object) + * @see #containsKey(Object) + * @throws NullPointerException if <code>value</code> is null + */ + private boolean internalContainsValue(Object value) + { for (int i = buckets.length - 1; i >= 0; i--) { HashEntry e = buckets[i]; |