From 7562697c64ef7c38d6f54800524c7d70ed04a9ad Mon Sep 17 00:00:00 2001 From: markt Date: Mon, 20 Jul 2009 13:15:51 +0000 Subject: [PATCH] Better method name git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@795819 13f79535-47bb-0310-9956-ffa450edef68 --- java/org/apache/catalina/startup/TldConfig.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/java/org/apache/catalina/startup/TldConfig.java b/java/org/apache/catalina/startup/TldConfig.java index bb03a0844..21416c53a 100644 --- a/java/org/apache/catalina/startup/TldConfig.java +++ b/java/org/apache/catalina/startup/TldConfig.java @@ -329,7 +329,7 @@ public final class TldConfig implements LifecycleListener { tldScanWebXml(); // Stage 3a - TLDs under WEB-INF (not lib or classes) - tldScanResourcePathsWebInf(context.getResources(), WEB_INF); + tldScanResourcePaths(context.getResources(), WEB_INF); // Stage 3b - .jar files in WEB-INF/lib/ tldScanWebInfLib(); @@ -408,7 +408,7 @@ public final class TldConfig implements LifecycleListener { * @param rootPath The path whose subdirectories are to be searched for * TLDs */ - private void tldScanResourcePathsWebInf(DirContext resources, + private void tldScanResourcePaths(DirContext resources, String rootPath) { if (log.isTraceEnabled()) { @@ -437,7 +437,7 @@ public final class TldConfig implements LifecycleListener { "tldConfig.webinfFail", resourcePath),e); } } else { - tldScanResourcePathsWebInf(resources, resourcePath + '/'); + tldScanResourcePaths(resources, resourcePath + '/'); } } } catch (NamingException e) { -- 2.11.0