Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 52884 invoked from network); 14 Oct 2010 20:34:15 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 14 Oct 2010 20:34:15 -0000 Received: (qmail 44429 invoked by uid 500); 14 Oct 2010 20:34:14 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 44325 invoked by uid 500); 14 Oct 2010 20:34:14 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 44316 invoked by uid 99); 14 Oct 2010 20:34:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Oct 2010 20:34:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Oct 2010 20:34:11 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B743423889BB; Thu, 14 Oct 2010 20:33:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1022695 - in /tomcat/trunk: java/org/apache/catalina/Context.java java/org/apache/catalina/core/StandardContext.java java/org/apache/coyote/ActionCode.java webapps/docs/changelog.xml Date: Thu, 14 Oct 2010 20:33:14 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101014203314.B743423889BB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: markt Date: Thu Oct 14 20:33:14 2010 New Revision: 1022695 URL: http://svn.apache.org/viewvc?rev=1022695&view=rev Log: Fix Javadoc warnings Modified: tomcat/trunk/java/org/apache/catalina/Context.java tomcat/trunk/java/org/apache/catalina/core/StandardContext.java tomcat/trunk/java/org/apache/coyote/ActionCode.java tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/java/org/apache/catalina/Context.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/Context.java?rev=1022695&r1=1022694&r2=1022695&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/Context.java (original) +++ tomcat/trunk/java/org/apache/catalina/Context.java Thu Oct 14 20:33:14 2010 @@ -1227,7 +1227,7 @@ public interface Context extends Contain /** * Notification that servlet security has been dynamically set in a - * {@Link ServletRegistration.Dynamic} + * {@link ServletRegistration.Dynamic} * @param registration servlet security was modified for * @param servletSecurityElement new security constraints for this servlet * @return urls currently mapped to this registration that are already Modified: tomcat/trunk/java/org/apache/catalina/core/StandardContext.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/StandardContext.java?rev=1022695&r1=1022694&r2=1022695&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/core/StandardContext.java (original) +++ tomcat/trunk/java/org/apache/catalina/core/StandardContext.java Thu Oct 14 20:33:14 2010 @@ -4061,7 +4061,7 @@ public class StandardContext extends Con /** * hook to register that we need to scan for security annotations. - * @param registration + * @param wrapper The wrapper for the Servlet that was added */ public ServletRegistration.Dynamic dynamicServletAdded(Wrapper wrapper) { return new ApplicationServletRegistration(wrapper, this); Modified: tomcat/trunk/java/org/apache/coyote/ActionCode.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/ActionCode.java?rev=1022695&r1=1022694&r2=1022695&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/coyote/ActionCode.java (original) +++ tomcat/trunk/java/org/apache/coyote/ActionCode.java Thu Oct 14 20:33:14 2010 @@ -145,7 +145,7 @@ public enum ActionCode { /** * Callback for an async call to - * {@link javax.servlet.AsyncContext#start()} + * {@link javax.servlet.AsyncContext#start(Runnable)} */ ASYNC_RUN, Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1022695&r1=1022694&r2=1022695&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Thu Oct 14 20:33:14 2010 @@ -36,6 +36,15 @@ +
+ + + + Correct a handful of Javadoc warnings. (markt) + + + +
--------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org