Author: markt
Date: Sat Jan  5 16:07:57 2008
New Revision: 609239

URL: http://svn.apache.org/viewvc?rev=609239&view=rev
Log:
Tabs -> 8 spaces

Modified:
    tomcat/trunk/java/org/apache/jasper/servlet/JspServletWrapper.java

Modified: tomcat/trunk/java/org/apache/jasper/servlet/JspServletWrapper.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/servlet/JspServletWrapper.java?rev=609239&r1=609238&r2=609239&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/jasper/servlet/JspServletWrapper.java 
(original)
+++ tomcat/trunk/java/org/apache/jasper/servlet/JspServletWrapper.java Sat Jan  
5 16:07:57 2008
@@ -89,34 +89,34 @@
                       boolean isErrorPage, JspRuntimeContext rctxt)
             throws JasperException {
 
-       this.isTagFile = false;
+        this.isTagFile = false;
         this.config = config;
         this.options = options;
         this.jspUri = jspUri;
         ctxt = new JspCompilationContext(jspUri, isErrorPage, options,
-                                        config.getServletContext(),
-                                        this, rctxt);
+                                         config.getServletContext(),
+                                         this, rctxt);
     }
 
     /*
      * JspServletWrapper for tag files.
      */
     public JspServletWrapper(ServletContext servletContext,
-                            Options options,
-                            String tagFilePath,
-                            TagInfo tagInfo,
-                            JspRuntimeContext rctxt,
-                            URL tagFileJarUrl)
-           throws JasperException {
+                             Options options,
+                             String tagFilePath,
+                             TagInfo tagInfo,
+                             JspRuntimeContext rctxt,
+                             URL tagFileJarUrl)
+            throws JasperException {
 
-       this.isTagFile = true;
-        this.config = null;    // not used
+        this.isTagFile = true;
+        this.config = null;        // not used
         this.options = options;
-       this.jspUri = tagFilePath;
-       this.tripCount = 0;
+        this.jspUri = tagFilePath;
+        this.tripCount = 0;
         ctxt = new JspCompilationContext(jspUri, tagInfo, options,
-                                        servletContext, this, rctxt,
-                                        tagFileJarUrl);
+                                         servletContext, this, rctxt,
+                                         tagFileJarUrl);
     }
 
     public JspCompilationContext getJspEngineContext() {
@@ -221,9 +221,9 @@
             }
         } catch (FileNotFoundException ex) {
             throw new JasperException(ex);
-       }
+        }
 
-       return tagHandlerClass;
+        return tagHandlerClass;
     }
 
     /**
@@ -234,12 +234,12 @@
      */
     public Class loadTagFilePrototype() throws JasperException {
 
-       ctxt.setPrototypeMode(true);
-       try {
-           return loadTagFile();
-       } finally {
-           ctxt.setPrototypeMode(false);
-       }
+        ctxt.setPrototypeMode(true);
+        try {
+            return loadTagFile();
+        } finally {
+            ctxt.setPrototypeMode(false);
+        }
     }
 
     /**
@@ -266,21 +266,21 @@
     }
 
     public boolean isTagFile() {
-       return this.isTagFile;
+        return this.isTagFile;
     }
 
     public int incTripCount() {
-       return tripCount++;
+        return tripCount++;
     }
 
     public int decTripCount() {
-       return tripCount--;
+        return tripCount--;
     }
 
     public void service(HttpServletRequest request, 
                         HttpServletResponse response,
                         boolean precompile)
-           throws ServletException, IOException, FileNotFoundException {
+            throws ServletException, IOException, FileNotFoundException {
         
         try {
 



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

Reply via email to