You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by ge...@apache.org on 2001/03/19 04:01:47 UTC

cvs commit: jakarta-velocity/src/java/org/apache/velocity/runtime/parser/node NodeUtils.java

geirm       01/03/18 19:01:47

  Modified:    src/java/org/apache/velocity/runtime/parser/node
                        NodeUtils.java
  Log:
  minus one string ctor
  
  Revision  Changes    Path
  1.11      +2 -2      jakarta-velocity/src/java/org/apache/velocity/runtime/parser/node/NodeUtils.java
  
  Index: NodeUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/src/java/org/apache/velocity/runtime/parser/node/NodeUtils.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- NodeUtils.java	2001/03/19 01:36:30	1.10
  +++ NodeUtils.java	2001/03/19 03:01:47	1.11
  @@ -63,7 +63,7 @@
    *
    * @author <a href="mailto:jvanzyl@periapt.com">Jason van Zyl</a>
    * @author <a href="mailto:geirm@optonline.net">Geir Magnusson Jr.</a>
  - * @version $Id: NodeUtils.java,v 1.10 2001/03/19 01:36:30 geirm Exp $
  + * @version $Id: NodeUtils.java,v 1.11 2001/03/19 03:01:47 geirm Exp $
    */
   public class NodeUtils
   {
  @@ -92,7 +92,7 @@
           {
               String st = tmp_t.image;
   
  -            StringBuffer sb = new StringBuffer("");
  +            StringBuffer sb = new StringBuffer();
   
               for(int i = 0; i < st.length(); i++)
               {