summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Brawer <brawer@dandelis.ch>2002-04-30 22:11:41 +0000
committerSascha Brawer <brawer@dandelis.ch>2002-04-30 22:11:41 +0000
commit15b822f6dbbeea274221491df2bb915fb146545c (patch)
tree4d340c855eaac395a04c5197155d8f9f13d8378c
parent026b709e956dd5aa42c98b7dec1d79e1de6aa594 (diff)
downloadclasspath-15b822f6dbbeea274221491df2bb915fb146545c.tar.gz
rehash, equals: Docfix to avoid angle brackets in Javadoc
and for pre-formatted code without asterisks.
-rw-r--r--java/util/Hashtable.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/util/Hashtable.java b/java/util/Hashtable.java
index 0d56a4ac8..36a3abea6 100644
--- a/java/util/Hashtable.java
+++ b/java/util/Hashtable.java
@@ -766,9 +766,9 @@ public class Hashtable extends Dictionary
/**
* Returns true if this Hashtable equals the supplied Object <code>o</code>.
* As specified by Map, this is:
- * <pre>
+ * <code>
* (o instanceof Map) && entrySet().equals(((Map) o).entrySet());
- * </pre>
+ * </code>
*
* @param o the object to compare to
* @return true if o is an equal map
@@ -875,7 +875,7 @@ public class Hashtable extends Dictionary
/**
* Increases the size of the Hashtable and rehashes all keys to new array
* indices; this is called when the addition of a new value would cause
- * size() > threshold. Note that the existing Entry objects are reused in
+ * size() &gt; threshold. Note that the existing Entry objects are reused in
* the new hash table.
* <p>
*