]> source.dussan.org Git - javassist.git/commitdiff
fixes bugs in javadoc comments
authorchibash <chiba@javassist.org>
Thu, 1 Nov 2018 16:49:10 +0000 (01:49 +0900)
committerchibash <chiba@javassist.org>
Thu, 1 Nov 2018 16:49:10 +0000 (01:49 +0900)
pom.xml
src/main/javassist/scopedpool/SoftValueHashMap.java

diff --git a/pom.xml b/pom.xml
index 8900978f2552e5272b075746f0c0f802b8a43ec0..c1fc343c6074719ec99809274fe85e9f4b0d23f2 100644 (file)
--- 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.
   </description>
-  <version>3.24-GA</version>
+  <version>3.24.0-GA</version>
   <name>Javassist</name>
   <url>http://www.javassist.org/</url>
 
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
-        <version>3.0.0-M1</version>
+        <version>3.0.1</version>
        <configuration>
          <attach>true</attach>
+          <excludePackageNames>javassist.compiler:javassist.convert:javassist.scopedpool:javassist.bytecode.stackmap</excludePackageNames>
+          <bottom><![CDATA[<i>Javassist, a Java-bytecode translator toolkit.<br>
+Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.</i>]]></bottom>
+          <show>public</show>
+          <nohelp>true</nohelp>
        </configuration>
       </plugin>
       <plugin>
index 1154e62ed6cef2179236ad37f39dda9e8fdfce03..01d8498a8947b4b59fe1783cf8cb7df1699a7918 100644 (file)
@@ -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.
      */