Return-Path: X-Original-To: apmail-tomcat-dev-archive@www.apache.org Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9491EE9C4 for ; Mon, 11 Feb 2013 13:34:04 +0000 (UTC) Received: (qmail 23918 invoked by uid 500); 11 Feb 2013 13:34:03 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 23825 invoked by uid 500); 11 Feb 2013 13:34:02 -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 23786 invoked by uid 99); 11 Feb 2013 13:34:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Feb 2013 13:34:01 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Mon, 11 Feb 2013 13:33:58 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 5B07123889FA for ; Mon, 11 Feb 2013 13:33:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1444762 - in /tomcat/trunk/java/org/apache/catalina/storeconfig: IStoreConfig.java StoreConfig.java WebResourceRootSF.java Date: Mon, 11 Feb 2013 13:33:38 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130211133338.5B07123889FA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: markt Date: Mon Feb 11 13:33:37 2013 New Revision: 1444762 URL: http://svn.apache.org/r1444762 Log: Fix a handful of Javadoc warnings Modified: tomcat/trunk/java/org/apache/catalina/storeconfig/IStoreConfig.java tomcat/trunk/java/org/apache/catalina/storeconfig/StoreConfig.java tomcat/trunk/java/org/apache/catalina/storeconfig/WebResourceRootSF.java Modified: tomcat/trunk/java/org/apache/catalina/storeconfig/IStoreConfig.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/storeconfig/IStoreConfig.java?rev=1444762&r1=1444761&r2=1444762&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/storeconfig/IStoreConfig.java (original) +++ tomcat/trunk/java/org/apache/catalina/storeconfig/IStoreConfig.java Mon Feb 11 13:33:37 2013 @@ -83,9 +83,6 @@ public interface IStoreConfig { * Number of spaces to indent this element * @param aServer * Object to be stored - * - * @exception Exception - * if an exception occurs while storing */ void store(PrintWriter aWriter, int indent, Server aServer); @@ -98,9 +95,6 @@ public interface IStoreConfig { * Number of spaces to indent this element * @param aService * Object to be stored - * - * @exception Exception - * if an exception occurs while storing */ void store(PrintWriter aWriter, int indent, Service aService); @@ -113,9 +107,6 @@ public interface IStoreConfig { * Number of spaces to indent this element * @param aHost * Object to be stored - * - * @exception Exception - * if an exception occurs while storing */ void store(PrintWriter aWriter, int indent, Host aHost); @@ -124,9 +115,6 @@ public interface IStoreConfig { * * @param aContext * Object to be stored - * - * @exception Exception - * if an exception occurs while storing */ void store(Context aContext); @@ -139,9 +127,6 @@ public interface IStoreConfig { * Number of spaces to indent this element * @param aContext * Object to be stored - * - * @exception Exception - * if an exception occurs while storing */ void store(PrintWriter aWriter, int indent, Context aContext); } \ No newline at end of file Modified: tomcat/trunk/java/org/apache/catalina/storeconfig/StoreConfig.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/storeconfig/StoreConfig.java?rev=1444762&r1=1444761&r2=1444762&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/storeconfig/StoreConfig.java (original) +++ tomcat/trunk/java/org/apache/catalina/storeconfig/StoreConfig.java Mon Feb 11 13:33:37 2013 @@ -95,9 +95,7 @@ public class StoreConfig implements ISto } /** - * Store current Server - * - * @see org.apache.catalina.ServerFactory#getServer() + * Store current Server. */ @Override public synchronized void storeConfig() { Modified: tomcat/trunk/java/org/apache/catalina/storeconfig/WebResourceRootSF.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/storeconfig/WebResourceRootSF.java?rev=1444762&r1=1444761&r2=1444762&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/storeconfig/WebResourceRootSF.java (original) +++ tomcat/trunk/java/org/apache/catalina/storeconfig/WebResourceRootSF.java Mon Feb 11 13:33:37 2013 @@ -34,8 +34,6 @@ public class WebResourceRootSF extends S * PrintWriter to which we are storing * @param indent * Number of spaces to indent this element - * @param aCluster - * Cluster whose properties are being stored * * @exception Exception * if an exception occurs while storing --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org