You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by nb...@apache.org on 2007/05/03 07:53:34 UTC

svn commit: r534719 - /velocity/tools/branches/2.x/src/main/java/org/apache/velocity/tools/config/ToolboxConfiguration.java

Author: nbubna
Date: Wed May  2 22:53:33 2007
New Revision: 534719

URL: http://svn.apache.org/viewvc?view=rev&rev=534719
Log:
remove extraneous ')' from toString()

Modified:
    velocity/tools/branches/2.x/src/main/java/org/apache/velocity/tools/config/ToolboxConfiguration.java

Modified: velocity/tools/branches/2.x/src/main/java/org/apache/velocity/tools/config/ToolboxConfiguration.java
URL: http://svn.apache.org/viewvc/velocity/tools/branches/2.x/src/main/java/org/apache/velocity/tools/config/ToolboxConfiguration.java?view=diff&rev=534719&r1=534718&r2=534719
==============================================================================
--- velocity/tools/branches/2.x/src/main/java/org/apache/velocity/tools/config/ToolboxConfiguration.java (original)
+++ velocity/tools/branches/2.x/src/main/java/org/apache/velocity/tools/config/ToolboxConfiguration.java Wed May  2 22:53:33 2007
@@ -152,10 +152,6 @@
         out.append("' ");
         appendProperties(out);
         appendChildren(out, "tools: \n  ", "\n  ");
-        if (hasChildren())
-        {
-            out.append(")");
-        }
         return out.toString();
     }