diff options
author | chibash <chiba@javassist.org> | 2018-11-02 01:49:10 +0900 |
---|---|---|
committer | chibash <chiba@javassist.org> | 2018-11-02 01:49:10 +0900 |
commit | fa3dd56b836208944683de8a50bb36e96b5e001e (patch) | |
tree | 3591f42475c4adb55b05f0c581fcde9be59e17d0 /src/main/javassist/scopedpool/SoftValueHashMap.java | |
parent | 2d4ef86c82c843a45d7670df8a447fcc59c8d94d (diff) | |
download | javassist-fa3dd56b836208944683de8a50bb36e96b5e001e.tar.gz javassist-fa3dd56b836208944683de8a50bb36e96b5e001e.zip |
fixes bugs in javadoc comments
Diffstat (limited to 'src/main/javassist/scopedpool/SoftValueHashMap.java')
-rw-r--r-- | src/main/javassist/scopedpool/SoftValueHashMap.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/javassist/scopedpool/SoftValueHashMap.java b/src/main/javassist/scopedpool/SoftValueHashMap.java index 1154e62e..01d8498a 100644 --- a/src/main/javassist/scopedpool/SoftValueHashMap.java +++ b/src/main/javassist/scopedpool/SoftValueHashMap.java @@ -31,7 +31,7 @@ import java.util.concurrent.ConcurrentHashMap; * This Map will remove entries when the value in the map has been cleaned from * garbage collection * - * @version <tt>$Revision: 1.4 $</tt> + * @version <code>$Revision: 1.4 $</code> * @author <a href="mailto:bill@jboss.org">Bill Burke</a> */ public class SoftValueHashMap<K,V> implements Map<K,V> { @@ -133,10 +133,10 @@ public class SoftValueHashMap<K,V> implements Map<K,V> { /** * Constructs a new <code>WeakHashMap</code> with the same mappings as the - * specified <tt>Map</tt>. The <code>WeakHashMap</code> is created with + * specified <code>Map</code>. The <code>WeakHashMap</code> is created with * an initial capacity of twice the number of mappings in the specified map * or 11 (whichever is greater), and a default load factor, which is - * <tt>0.75</tt>. + * <code>0.75</code>. * * @param t the map whose mappings are to be placed in this map. */ |