From: markt Date: Sun, 7 Feb 2010 21:21:39 +0000 (+0000) Subject: Get URI and location the right way around X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=6ddc0345ef9d90fc787791d3839c1610c65074cc;p=tomcat7.0 Get URI and location the right way around git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@907496 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/catalina/deploy/WebXml.java b/java/org/apache/catalina/deploy/WebXml.java index 314ce656e..f3b930436 100644 --- a/java/org/apache/catalina/deploy/WebXml.java +++ b/java/org/apache/catalina/deploy/WebXml.java @@ -1291,7 +1291,7 @@ public class WebXml { } for (Entry entry : taglibs.entrySet()) { TaglibDescriptor descriptor = new ApplicationTaglibDescriptor( - entry.getKey(), entry.getValue()); + entry.getValue(), entry.getKey()); context.getJspConfigDescriptor().getTaglibs().add(descriptor); }