Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 64982 invoked from network); 1 Jul 2010 19:39:07 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 1 Jul 2010 19:39:07 -0000 Received: (qmail 93227 invoked by uid 500); 1 Jul 2010 19:39:06 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 93060 invoked by uid 500); 1 Jul 2010 19:39:06 -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 93051 invoked by uid 99); 1 Jul 2010 19:39:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jul 2010 19:39:06 +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, 01 Jul 2010 19:39:03 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E200523888E8; Thu, 1 Jul 2010 19:37:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r959756 - /tomcat/trunk/java/org/apache/catalina/core/StandardContext.java Date: Thu, 01 Jul 2010 19:37:40 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100701193740.E200523888E8@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: markt Date: Thu Jul 1 19:37:40 2010 New Revision: 959756 URL: http://svn.apache.org/viewvc?rev=959756&view=rev Log: Fix typo Modified: tomcat/trunk/java/org/apache/catalina/core/StandardContext.java 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=959756&r1=959755&r2=959756&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/core/StandardContext.java (original) +++ tomcat/trunk/java/org/apache/catalina/core/StandardContext.java Thu Jul 1 19:37:40 2010 @@ -418,7 +418,7 @@ public class StandardContext extends Con * The naming resources for this web application. */ private NamingResources namingResources = null; - private ObjectName onameNamingResoucres; + private ObjectName onameNamingResources; /** * The message destinations for this web application. @@ -1753,8 +1753,8 @@ public class StandardContext extends Con support.firePropertyChange("namingResources", oldNamingResources, this.namingResources); - unregister(onameNamingResoucres); - onameNamingResoucres = register(namingResources, + unregister(onameNamingResources); + onameNamingResources = register(namingResources, "type=NamingResources," + getObjectKeyPropertiesNameOnly()); } @@ -5027,7 +5027,7 @@ public class StandardContext extends Con sequenceNumber++); broadcaster.sendNotification(notification); - unregister(onameNamingResoucres); + unregister(onameNamingResources); synchronized (instanceListenersLock) { instanceListeners = new String[0]; @@ -5585,7 +5585,7 @@ public class StandardContext extends Con // Register the naming resources if (namingResources != null) { - onameNamingResoucres = register(namingResources, + onameNamingResources = register(namingResources, "type=NamingResources," + getObjectNameKeyProperties()); } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org