You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2010/02/07 22:21:52 UTC

svn commit: r907496 - /tomcat/trunk/java/org/apache/catalina/deploy/WebXml.java

Author: markt
Date: Sun Feb  7 21:21:39 2010
New Revision: 907496

URL: http://svn.apache.org/viewvc?rev=907496&view=rev
Log:
Get URI and location the right way around

Modified:
    tomcat/trunk/java/org/apache/catalina/deploy/WebXml.java

Modified: tomcat/trunk/java/org/apache/catalina/deploy/WebXml.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/deploy/WebXml.java?rev=907496&r1=907495&r2=907496&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/deploy/WebXml.java (original)
+++ tomcat/trunk/java/org/apache/catalina/deploy/WebXml.java Sun Feb  7 21:21:39 2010
@@ -1291,7 +1291,7 @@
         }
         for (Entry<String, String> entry : taglibs.entrySet()) {
             TaglibDescriptor descriptor = new ApplicationTaglibDescriptor(
-                    entry.getKey(), entry.getValue());
+                    entry.getValue(), entry.getKey());
             context.getJspConfigDescriptor().getTaglibs().add(descriptor);
         }
         



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org