markt       2004/04/09 09:40:13

  Modified:    jasper2/src/share/org/apache/jasper/runtime Tag:
                        tomcat_4_branch PageContextImpl.java
  Log:
  Fixing indents prior to actually changing the code.
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.11.2.8  +10 -10    
jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime/PageContextImpl.java
  
  Index: PageContextImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime/PageContextImpl.java,v
  retrieving revision 1.11.2.7
  retrieving revision 1.11.2.8
  diff -u -r1.11.2.7 -r1.11.2.8
  --- PageContextImpl.java      29 Feb 2004 19:07:26 -0000      1.11.2.7
  +++ PageContextImpl.java      9 Apr 2004 16:40:13 -0000       1.11.2.8
  @@ -524,12 +524,12 @@
               request.removeAttribute("javax.servlet.error.status_code");
               request.removeAttribute("javax.servlet.jsp.jspException");
   
  -     } else {
  +         } else {
               // Otherwise throw the exception wrapped inside a ServletException.
  -         // Set the exception as the root cause in the ServletException
  -         // to get a stack trace for the real problem
  -         if (t instanceof IOException) throw (IOException)t;
  -         if (t instanceof ServletException) throw (ServletException)t;
  +             // Set the exception as the root cause in the ServletException
  +             // to get a stack trace for the real problem
  +             if (t instanceof IOException) throw (IOException)t;
  +             if (t instanceof ServletException) throw (ServletException)t;
               if (t instanceof RuntimeException) throw (RuntimeException)t;
               if (t instanceof JspException) {
                   Throwable rootCause = ((JspException)t).getRootCause();
  @@ -539,8 +539,8 @@
                       throw new ServletException(t);
                   }
               }
  -         throw new ServletException(t);
  -     }
  +             throw new ServletException(t);
  +         }
       }
   
       protected JspWriterImpl _createOut(int bufferSize, boolean autoFlush)
  
  
  

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

Reply via email to