--- /home/cpdev/src/classpath/gnu/xml/transform/CommentNode.java	2006-01-13 17:32:48.000000000 +0000
+++ gnu/xml/transform/CommentNode.java	2005-09-14 21:51:32.000000000 +0000
@@ -1,5 +1,5 @@
 /* CommentNode.java -- 
-   Copyright (C) 2004,2006 Free Software Foundation, Inc.
+   Copyright (C) 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -58,9 +58,13 @@
   {
     TemplateNode ret = new CommentNode();
     if (children != null)
-      ret.children = children.clone(stylesheet);
+      {
+        ret.children = children.clone(stylesheet);
+      }
     if (next != null)
-      ret.next = next.clone(stylesheet);
+      {
+        ret.next = next.clone(stylesheet);
+      }
     return ret;
   }
 
@@ -86,18 +90,27 @@
     Comment comment = doc.createComment(value);
     // Insert into result tree
     if (nextSibling != null)
-      parent.insertBefore(comment, nextSibling);
+      {
+        parent.insertBefore(comment, nextSibling);
+      }
     else
-      parent.appendChild(comment);
+      {
+        parent.appendChild(comment);
+      }
     if (next != null)
-      next.apply(stylesheet, mode,
-                 context, pos, len,
-                 parent, nextSibling);
+      {
+        next.apply(stylesheet, mode,
+                   context, pos, len,
+                   parent, nextSibling);
+      }
   }
   
   public String toString()
   {
-    return "comment";
+    StringBuffer buf = new StringBuffer(getClass().getName());
+    buf.append('[');
+    buf.append(']');
+    return buf.toString();
   }
   
 }
