From: chibash Date: Thu, 1 Nov 2018 16:49:10 +0000 (+0900) Subject: fixes bugs in javadoc comments X-Git-Tag: rel_3_24_1_ga~5 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=fa3dd56b836208944683de8a50bb36e96b5e001e;p=javassist.git fixes bugs in javadoc comments --- diff --git a/pom.xml b/pom.xml index 8900978f..c1fc343c 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation simple. It is a class library for editing bytecodes in Java. - 3.24-GA + 3.24.0-GA Javassist http://www.javassist.org/ @@ -202,9 +202,14 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.0.0-M1 + 3.0.1 true + javassist.compiler:javassist.convert:javassist.scopedpool:javassist.bytecode.stackmap + Javassist, a Java-bytecode translator toolkit.
+Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.]]>
+ public + true
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 $Revision: 1.4 $ + * @version $Revision: 1.4 $ * @author Bill Burke */ public class SoftValueHashMap implements Map { @@ -133,10 +133,10 @@ public class SoftValueHashMap implements Map { /** * Constructs a new WeakHashMap with the same mappings as the - * specified Map. The WeakHashMap is created with + * specified Map. The WeakHashMap 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 - * 0.75. + * 0.75. * * @param t the map whose mappings are to be placed in this map. */