Take out debug printlns

This commit is contained in:
Jan Bartel 2012-06-07 00:02:44 +02:00
parent 0d38d30ff6
commit c43725bb31
1 changed files with 0 additions and 4 deletions

View File

@ -469,11 +469,9 @@ public class ServletHolder extends Holder<Servlet> implements UserIdentity.Scope
/* Set the webapp's classpath for Jasper */
ch.setAttribute("org.apache.catalina.jsp_classpath", ch.getClassPath());
System.err.println(_servlet.getClass().getName()+":"+_name+":Set attribute org.apache.catalina.jsp_classpath:"+ ch.getAttribute("org.apache.catalina.jsp_classpath"));
/* Set the system classpath for Jasper */
setInitParameter("com.sun.appserv.jsp.classpath", Loader.getClassPath(ch.getClassLoader()));
System.err.println(_servlet.getClass().getName()+":"+_name+":Set com.sun.appserv.jsp.classpath:"+getInitParameter("com.sun.appserv.jsp.classpath"));
/* Set up other classpath attribute */
if ("?".equals(getInitParameter("classpath")))
@ -625,7 +623,6 @@ public class ServletHolder extends Holder<Servlet> implements UserIdentity.Scope
c = c.getSuperclass();
}
System.err.println(servlet.getClass().getName()+" is "+(result?"":"not")+" jsp servlet");
return result;
}
@ -635,7 +632,6 @@ public class ServletHolder extends Holder<Servlet> implements UserIdentity.Scope
{
if (classname == null)
return false;
System.err.println("Testing isJspServlet: "+classname);
return ("org.apache.jasper.servlet.JspServlet".equals(classname));
}