Tab police.
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 28 Dec 2007 22:18:57 +0000 (22:18 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 28 Dec 2007 22:18:57 +0000 (22:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@607347 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/jasper/compiler/JspRuntimeContext.java

index 4245a00..6e4fe06 100644 (file)
@@ -117,21 +117,21 @@ public final class JspRuntimeContext {
                 (URLClassLoader)this.getClass().getClassLoader();
         }
 
-       if (log.isDebugEnabled()) {
-           if (parentClassLoader != null) {
-               log.debug(Localizer.getMessage("jsp.message.parent_class_loader_is",
-                                              parentClassLoader.toString()));
-           } else {
-               log.debug(Localizer.getMessage("jsp.message.parent_class_loader_is",
-                                              "<none>"));
-           }
+        if (log.isDebugEnabled()) {
+            if (parentClassLoader != null) {
+                log.debug(Localizer.getMessage("jsp.message.parent_class_loader_is",
+                                               parentClassLoader.toString()));
+            } else {
+                log.debug(Localizer.getMessage("jsp.message.parent_class_loader_is",
+                                               "<none>"));
+            }
         }
 
         initClassPath();
 
-       if (context instanceof org.apache.jasper.servlet.JspCServletContext) {
-           return;
-       }
+        if (context instanceof org.apache.jasper.servlet.JspCServletContext) {
+            return;
+        }
 
         if (Constants.IS_SECURITY_ENABLED) {
             initSecurity();
@@ -302,7 +302,7 @@ public final class JspRuntimeContext {
                     ctxt.incrementRemoved();
                 } catch (Throwable t) {
                     jsw.getServletContext().log("Background compile failed",
-                                               t);
+                                                t);
                 }
             }
         }
@@ -340,7 +340,7 @@ public final class JspRuntimeContext {
             }
         }    
 
-       cpath.append(options.getScratchDir() + sep);
+        cpath.append(options.getScratchDir() + sep);
 
         String cp = (String) context.getAttribute(Constants.SERVLET_CLASSPATH);
         if (cp == null || cp.equals("")) {