Author: markt
Date: Thu Sep 25 12:44:05 2014
New Revision: 1627531

URL: http://svn.apache.org/r1627531
Log:
Fix broken Javadoc links

Modified:
    tomcat/trunk/java/javax/websocket/Session.java
    
tomcat/trunk/java/org/apache/tomcat/util/security/ConcurrentMessageDigest.java
    tomcat/trunk/webapps/docs/changelog.xml

Modified: tomcat/trunk/java/javax/websocket/Session.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/javax/websocket/Session.java?rev=1627531&r1=1627530&r2=1627531&view=diff
==============================================================================
--- tomcat/trunk/java/javax/websocket/Session.java (original)
+++ tomcat/trunk/java/javax/websocket/Session.java Thu Sep 25 12:44:05 2014
@@ -41,12 +41,12 @@ public interface Session extends Closeab
      * or
      * {@link #addMessageHandler(Class, javax.websocket.MessageHandler.Whole)}.
      *
-     * @param listener  The message handler for a incoming message
+     * @param handler   The message handler for a incoming message
      *
      * @throws IllegalStateException  If a message handler has already been
      *                                registered for the associated message 
type
      */
-    void addMessageHandler(MessageHandler listener) throws 
IllegalStateException;
+    void addMessageHandler(MessageHandler handler) throws 
IllegalStateException;
 
     Set<MessageHandler> getMessageHandlers();
 
@@ -148,7 +148,7 @@ public interface Session extends Closeab
      *
      * @param clazz     The type of message that the given handler is intended
      *                  for
-     * @param listener  The message handler for a incoming message
+     * @param handler   The message handler for a incoming message
      *
      * @throws IllegalStateException  If a message handler has already been
      *                                registered for the associated message 
type
@@ -163,7 +163,7 @@ public interface Session extends Closeab
      *
      * @param clazz     The type of message that the given handler is intended
      *                  for
-     * @param listener  The message handler for a incoming message
+     * @param handler   The message handler for a incoming message
      *
      * @throws IllegalStateException  If a message handler has already been
      *                                registered for the associated message 
type

Modified: 
tomcat/trunk/java/org/apache/tomcat/util/security/ConcurrentMessageDigest.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/security/ConcurrentMessageDigest.java?rev=1627531&r1=1627530&r2=1627531&view=diff
==============================================================================
--- 
tomcat/trunk/java/org/apache/tomcat/util/security/ConcurrentMessageDigest.java 
(original)
+++ 
tomcat/trunk/java/org/apache/tomcat/util/security/ConcurrentMessageDigest.java 
Thu Sep 25 12:44:05 2014
@@ -89,9 +89,9 @@ public class ConcurrentMessageDigest {
 
 
     /**
-     * Ensures that {@link #digest(String, byte[])} will support the specified
+     * Ensures that {@link #digest(String, byte[][])} will support the 
specified
      * algorithm. This method <b>must</b> be called and return successfully
-     * before using {@link #digest(String, byte[])}.
+     * before using {@link #digest(String, byte[][])}.
      *
      * @param algorithm The message digest algorithm to be supported
      *

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1627531&r1=1627530&r2=1627531&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Thu Sep 25 12:44:05 2014
@@ -44,6 +44,15 @@
   They eventually become mixed with the numbered issues. (I.e., numbered
   issues to not "pop up" wrt. others).
 -->
+<section name="Tomcat 8.0.15 (markt)">
+  <subsection name="We applications">
+    <changelog>
+      <fix>
+        Correct a couple of broken links in the Javadoc. (markt)
+      </fix>
+    </changelog>
+  </subsection>
+</section>
 <section name="Tomcat 8.0.14 (markt)">
   <subsection name="Other">
     <changelog>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to