Author: markt
Date: Sun Sep 10 18:47:27 2006
New Revision: 442066

URL: http://svn.apache.org/viewvc?view=rev&rev=442066
Log:
Tabs to 8 spaces. No other change.

Modified:
    tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Compiler.java

Modified: 
tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Compiler.java
URL: 
http://svn.apache.org/viewvc/tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Compiler.java?view=diff&rev=442066&r1=442065&r2=442066
==============================================================================
--- tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Compiler.java 
(original)
+++ tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Compiler.java 
Sun Sep 10 18:47:27 2006
@@ -106,7 +106,7 @@
         // Setup page info area
         pageInfo = new PageInfo(new BeanRepository(ctxt.getClassLoader(),
                                                    errDispatcher),
-                                ctxt.getJspFile());
+                                                   ctxt.getJspFile());
 
         JspConfig jspConfig = options.getJspConfig();
         JspConfig.JspProperty jspProperty =
@@ -125,7 +125,7 @@
             pageInfo.setIncludePrelude(jspProperty.getIncludePrelude());
         }
         if (jspProperty.getIncludeCoda() != null) {
-           pageInfo.setIncludeCoda(jspProperty.getIncludeCoda());
+            pageInfo.setIncludeCoda(jspProperty.getIncludeCoda());
         }
 
         String javaFileName = ctxt.getServletJavaFileName();
@@ -150,11 +150,11 @@
             // Reset the temporary variable counter for the generator.
             JspUtil.resetTemporaryVariableName();
 
-           // Parse the file
-           ParserController parserCtl = new ParserController(ctxt, this);
-           pageNodes = parserCtl.parse(ctxt.getJspFile());
+            // Parse the file
+            ParserController parserCtl = new ParserController(ctxt, this);
+            pageNodes = parserCtl.parse(ctxt.getJspFile());
 
-           if (ctxt.isPrototypeMode()) {
+            if (ctxt.isPrototypeMode()) {
                 // generate prototype .java file for the tag file
                 Generator.generate(writer, this, pageNodes);
                 writer.close();
@@ -439,7 +439,7 @@
      * Gets the error dispatcher.
      */
     public ErrorDispatcher getErrorDispatcher() {
-       return errDispatcher;
+        return errDispatcher;
     }
 
 
@@ -447,12 +447,12 @@
      * Gets the info about the page under compilation
      */
     public PageInfo getPageInfo() {
-       return pageInfo;
+        return pageInfo;
     }
 
 
     public JspCompilationContext getCompilationContext() {
-       return ctxt;
+        return ctxt;
     }
 
 



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to