From 0897251172b8d05206c330fb47b785806387b700 Mon Sep 17 00:00:00 2001 From: markt Date: Fri, 11 Feb 2011 12:24:47 +0000 Subject: [PATCH] Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=50752 Correct typo git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1069770 13f79535-47bb-0310-9956-ffa450edef68 --- java/org/apache/catalina/startup/Embedded.java | 2 +- webapps/docs/changelog.xml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/java/org/apache/catalina/startup/Embedded.java b/java/org/apache/catalina/startup/Embedded.java index 432f648e5..3bc16d405 100644 --- a/java/org/apache/catalina/startup/Embedded.java +++ b/java/org/apache/catalina/startup/Embedded.java @@ -896,7 +896,7 @@ public class Embedded extends StandardService { (javax.naming.Context.INITIAL_CONTEXT_FACTORY, "org.apache.naming.java.javaURLContextFactory"); } else { - log.debug( "INITIAL_CONTEXT_FACTORY alread set " + value ); + log.debug( "INITIAL_CONTEXT_FACTORY already set " + value ); } } } diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index 2d7317972..57e955923 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -71,6 +71,10 @@ 50748: Allow the content length header to be set up to the point the response is committed when a writer is being used. (markt) + + 50752: Fix typo in debug message in deprecated Embedded + class. (markt) + -- 2.11.0