You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ak...@hyperreal.org on 1999/11/16 01:33:18 UTC

cvs commit: jakarta-tomcat/src/share/org/apache/jasper/compiler TagEndGenerator.java

akv         99/11/15 16:33:17

  Modified:    src/share/org/apache/jasper/compiler TagEndGenerator.java
  Log:
  Removed try catch block that is not necessary...
  
  Revision  Changes    Path
  1.6       +10 -10    jakarta-tomcat/src/share/org/apache/jasper/compiler/TagEndGenerator.java
  
  Index: TagEndGenerator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/jasper/compiler/TagEndGenerator.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- TagEndGenerator.java	1999/11/08 03:14:31	1.5
  +++ TagEndGenerator.java	1999/11/16 00:33:12	1.6
  @@ -113,13 +113,13 @@
               writer.popIndent(); // try 
   
               /** FIXME: REMOVE BEGIN */
  -            writer.println("} catch (Throwable t) {");
  -            writer.pushIndent();
  +            //              writer.println("} catch (Throwable t) {");
  +            //              writer.pushIndent();
   
  -            writer.println("System.err.println(\"Caught: \");");
  -            writer.println("t.printStackTrace();");
  +            //              writer.println("System.err.println(\"Caught: \");");
  +            //              writer.println("t.printStackTrace();");
   
  -            writer.popIndent();
  +            //              writer.popIndent();
               /** FIXME: REMOVE END */
           
               writer.println("} finally {");
  @@ -142,12 +142,12 @@
   	writer.popIndent(); // try
   
           /** FIXME: REMOVE BEGIN */
  -        writer.println("} catch (Throwable t) {");
  -        writer.pushIndent();
  +        //          writer.println("} catch (Throwable t) {");
  +        //          writer.pushIndent();
   
  -        writer.println("System.err.println(\"Caught: \");");
  -        writer.println("t.printStackTrace();");
  -        writer.popIndent();
  +        //          writer.println("System.err.println(\"Caught: \");");
  +        //          writer.println("t.printStackTrace();");
  +        //          writer.popIndent();
           /** FIXME: REMOVE END */
   
   	writer.println("} finally {");