diff options
Diffstat (limited to 'libjava/classpath/gnu/xml/dom/DomComment.java')
-rw-r--r-- | libjava/classpath/gnu/xml/dom/DomComment.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libjava/classpath/gnu/xml/dom/DomComment.java b/libjava/classpath/gnu/xml/dom/DomComment.java index 71c8160485f..5be6bd5181c 100644 --- a/libjava/classpath/gnu/xml/dom/DomComment.java +++ b/libjava/classpath/gnu/xml/dom/DomComment.java @@ -1,4 +1,4 @@ -/* DomComment.java -- +/* DomComment.java -- Copyright (C) 1999,2000,2001,2004 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -54,7 +54,7 @@ public class DomComment extends DomCharacterData implements Comment { - + /** * Constructs a comment node associated with the specified * document and holding the specified data. @@ -67,7 +67,7 @@ public class DomComment { super(COMMENT_NODE, owner, value); } - + /** * <b>DOM L1</b> * Returns the string "#comment". @@ -78,4 +78,3 @@ public class DomComment } } - |