Get URI and location the right way around
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 7 Feb 2010 21:21:39 +0000 (21:21 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 7 Feb 2010 21:21:39 +0000 (21:21 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@907496 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/deploy/WebXml.java

index 314ce65..f3b9304 100644 (file)
@@ -1291,7 +1291,7 @@ public class WebXml {
         }
         for (Entry<String, String> entry : taglibs.entrySet()) {
             TaglibDescriptor descriptor = new ApplicationTaglibDescriptor(
-                    entry.getKey(), entry.getValue());
+                    entry.getValue(), entry.getKey());
             context.getJspConfigDescriptor().getTaglibs().add(descriptor);
         }