geirm       00/11/01 17:24:50

  Modified:    src/java/org/apache/velocity/runtime/parser Parser.jjt
  Log:
  Removed the try{} block in parse() that I use around process() for debugging.  
Apologies...
  
  Revision  Changes    Path
  1.14      +2 -10     
jakarta-velocity/src/java/org/apache/velocity/runtime/parser/Parser.jjt
  
  Index: Parser.jjt
  ===================================================================
  RCS file: 
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/runtime/parser/Parser.jjt,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- Parser.jjt        2000/11/01 23:13:00     1.13
  +++ Parser.jjt        2000/11/02 01:24:49     1.14
  @@ -141,7 +141,7 @@
    *
    * @author <a href="mailto:[EMAIL PROTECTED]">Jason van Zyl</a>
    * @author <a href="mailto:[EMAIL PROTECTED]">Geir Magnusson Jr.</a>
  - * @version $Id: Parser.jjt,v 1.13 2000/11/01 23:13:00 geirm Exp $ 
  + * @version $Id: Parser.jjt,v 1.14 2000/11/02 01:24:49 geirm Exp $ 
   */
   public class Parser
   {
  @@ -181,15 +181,7 @@
       {
           token_source.clearStateVars();
           ReInit(stream);  
  -       // return process();
  -    
  -        SimpleNode n = null;
  -
  -        try {
  -            n = process();
  -        } catch (Exception e) { System.out.println(e);}
  -
  -        return n;
  +        return process();
       }        
   
       public void setDirectives(Hashtable directives)
  
  
  

Reply via email to