Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 54238 invoked from network); 8 Dec 2010 22:25:26 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 8 Dec 2010 22:25:26 -0000 Received: (qmail 26250 invoked by uid 500); 8 Dec 2010 22:25:25 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 26200 invoked by uid 500); 8 Dec 2010 22:25:25 -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 26191 invoked by uid 99); 8 Dec 2010 22:25:25 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Dec 2010 22:25:25 +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; Wed, 08 Dec 2010 22:25:25 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 00CA123888E4; Wed, 8 Dec 2010 22:25:05 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1043734 - in /tomcat/trunk/java/org/apache/coyote: Constants.java Request.java Date: Wed, 08 Dec 2010 22:25:04 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101208222505.00CA123888E4@eris.apache.org> Author: markt Date: Wed Dec 8 22:25:04 2010 New Revision: 1043734 URL: http://svn.apache.org/viewvc?rev=1043734&view=rev Log: Removed a little more unused code Modified: tomcat/trunk/java/org/apache/coyote/Constants.java tomcat/trunk/java/org/apache/coyote/Request.java Modified: tomcat/trunk/java/org/apache/coyote/Constants.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/Constants.java?rev=1043734&r1=1043733&r2=1043734&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/coyote/Constants.java (original) +++ tomcat/trunk/java/org/apache/coyote/Constants.java Wed Dec 8 22:25:04 2010 @@ -14,10 +14,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package org.apache.coyote; -import java.util.Locale; /** * Constants. @@ -33,13 +31,6 @@ public final class Constants { public static final String DEFAULT_CHARACTER_ENCODING="ISO-8859-1"; - - public static final String LOCALE_DEFAULT = "en"; - - - public static final Locale DEFAULT_LOCALE = new Locale(LOCALE_DEFAULT, ""); - - public static final int MAX_NOTES = 32; Modified: tomcat/trunk/java/org/apache/coyote/Request.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/Request.java?rev=1043734&r1=1043733&r2=1043734&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/coyote/Request.java (original) +++ tomcat/trunk/java/org/apache/coyote/Request.java Wed Dec 8 22:25:04 2010 @@ -191,10 +191,6 @@ public final class Request { return decodedUriMB; } - public MessageBytes query() { - return queryMB; - } - public MessageBytes queryString() { return queryMB; } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org