diff options
Diffstat (limited to 'libjava/classpath/gnu/xml/libxmlj/dom/GnomeProcessingInstruction.java')
-rw-r--r-- | libjava/classpath/gnu/xml/libxmlj/dom/GnomeProcessingInstruction.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libjava/classpath/gnu/xml/libxmlj/dom/GnomeProcessingInstruction.java b/libjava/classpath/gnu/xml/libxmlj/dom/GnomeProcessingInstruction.java index a6c47b2e1ca..d2ecd189004 100644 --- a/libjava/classpath/gnu/xml/libxmlj/dom/GnomeProcessingInstruction.java +++ b/libjava/classpath/gnu/xml/libxmlj/dom/GnomeProcessingInstruction.java @@ -37,6 +37,8 @@ exception statement from your version. */ package gnu.xml.libxmlj.dom; +import gnu.java.lang.CPStringBuilder; + import org.w3c.dom.DOMException; import org.w3c.dom.ProcessingInstruction; @@ -67,7 +69,7 @@ implements ProcessingInstruction public String toString () { - StringBuffer buffer = new StringBuffer (getClass ().getName ()); + CPStringBuilder buffer = new CPStringBuilder (getClass ().getName ()); buffer.append ("[data="); buffer.append (getData ()); buffer.append ("]"); |