You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ho...@apache.org on 2001/07/10 22:32:04 UTC

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

horwat      01/07/10 13:32:04

  Modified:    jasper/src/share/org/apache/jasper/compiler
                        TagEndGenerator.java
  Log:
  Changed to a more meaningful variable name.
  
  Bugzilla #2364
  
  Revision  Changes    Path
  1.7       +2 -2      jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/TagEndGenerator.java
  
  Index: TagEndGenerator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/TagEndGenerator.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- TagEndGenerator.java	2001/04/26 23:17:40	1.6
  +++ TagEndGenerator.java	2001/07/10 20:32:01	1.7
  @@ -179,9 +179,9 @@
   
   	// TryCatchFinally
   	if (implementsTryCatchFinally) {
  -	    writer.println("} catch (Throwable t) {");
  +	    writer.println("} catch (Throwable exception) {");
   	    writer.pushIndent();
  -	    writer.println(thVarName+".doCatch(t);");
  +	    writer.println(thVarName+".doCatch(exception);");
   	    writer.popIndent();
   	}