summaryrefslogtreecommitdiff
path: root/gnu/xml/util/XHTMLWriter.java
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/xml/util/XHTMLWriter.java')
-rw-r--r--gnu/xml/util/XHTMLWriter.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/gnu/xml/util/XHTMLWriter.java b/gnu/xml/util/XHTMLWriter.java
index 02a0afca8..3a0c1adb7 100644
--- a/gnu/xml/util/XHTMLWriter.java
+++ b/gnu/xml/util/XHTMLWriter.java
@@ -1,4 +1,4 @@
-/* XHTMLWriter.java --
+/* XHTMLWriter.java --
Copyright (C) 1999,2000,2001 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -67,7 +67,7 @@ public class XHTMLWriter extends XMLWriter
public XHTMLWriter ()
throws IOException
{
- this (System.out);
+ this (System.out);
}
/**
@@ -75,15 +75,15 @@ public class XHTMLWriter extends XMLWriter
* is used to write SAX events in the US-ASCII encoding, as XHTML.
*
* @param out Where US-ASCII encoding of the stream of SAX
- * events will be sent.
+ * events will be sent.
*/
public XHTMLWriter (OutputStream out)
throws IOException
{
- // not all JVMs understand "ASCII" as an encoding name, so
- // we use 8859_1 (they all seem to handle that one) and
- // make the echo handler filter out non-ASCII characters
- this (new OutputStreamWriter (out, "8859_1"), "US-ASCII");
+ // not all JVMs understand "ASCII" as an encoding name, so
+ // we use 8859_1 (they all seem to handle that one) and
+ // make the echo handler filter out non-ASCII characters
+ this (new OutputStreamWriter (out, "8859_1"), "US-ASCII");
}
/**
@@ -94,7 +94,7 @@ public class XHTMLWriter extends XMLWriter
*/
public XHTMLWriter (Writer out)
{
- this (out, null);
+ this (out, null);
}
/**
@@ -104,11 +104,11 @@ public class XHTMLWriter extends XMLWriter
*
* @param out Where the stream of SAX events will be written.
* @param encoding If non-null, this names the encoding to be
- * placed in the encoding declaration.
+ * placed in the encoding declaration.
*/
public XHTMLWriter (Writer out, String encoding)
{
- super (out, encoding);
- setXhtml (true);
+ super (out, encoding);
+ setXhtml (true);
}
}