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 2013/11/13 11:41:14 UTC

svn commit: r1541459 - /tomcat/trunk/java/org/apache/jasper/JspCompilationContext.java

Author: markt
Date: Wed Nov 13 10:41:13 2013
New Revision: 1541459

URL: http://svn.apache.org/r1541459
Log:
jndi URLs are no longer used in Tomcat

Modified:
    tomcat/trunk/java/org/apache/jasper/JspCompilationContext.java

Modified: tomcat/trunk/java/org/apache/jasper/JspCompilationContext.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/JspCompilationContext.java?rev=1541459&r1=1541458&r2=1541459&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/jasper/JspCompilationContext.java (original)
+++ tomcat/trunk/java/org/apache/jasper/JspCompilationContext.java Wed Nov 13 10:41:13 2013
@@ -300,11 +300,6 @@ public class JspCompilationContext {
                 // May not be in a JAR in some IDE environments
                 result = context.getResource(canonicalURI(res));
             }
-        } else if (res.startsWith("jar:jndi:")) {
-            // This is a tag file packaged in a jar that is being checked
-            // for a dependency
-            result = new URL(res);
-
         } else {
             result = context.getResource(canonicalURI(res));
         }



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