diff options
Diffstat (limited to 'src/scratchpad')
-rw-r--r-- | src/scratchpad/src/org/apache/poi/hpbf/extractor/PublisherTextExtractor.java | 2 | ||||
-rw-r--r-- | src/scratchpad/src/org/apache/poi/hslf/record/StyleTextPropAtom.java | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/scratchpad/src/org/apache/poi/hpbf/extractor/PublisherTextExtractor.java b/src/scratchpad/src/org/apache/poi/hpbf/extractor/PublisherTextExtractor.java index ec1dc82b75..27f62aeeec 100644 --- a/src/scratchpad/src/org/apache/poi/hpbf/extractor/PublisherTextExtractor.java +++ b/src/scratchpad/src/org/apache/poi/hpbf/extractor/PublisherTextExtractor.java @@ -61,7 +61,7 @@ public final class PublisherTextExtractor extends POIOLE2TextExtractor { public String getText() { - StringBuffer text = new StringBuffer(); + StringBuilder text = new StringBuilder(); // Get the text from the Quill Contents QCBit[] bits = doc.getQuillContents().getBits(); diff --git a/src/scratchpad/src/org/apache/poi/hslf/record/StyleTextPropAtom.java b/src/scratchpad/src/org/apache/poi/hslf/record/StyleTextPropAtom.java index 372c52d9ad..c0d13c0e64 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/record/StyleTextPropAtom.java +++ b/src/scratchpad/src/org/apache/poi/hslf/record/StyleTextPropAtom.java @@ -369,13 +369,11 @@ public final class StyleTextPropAtom extends RecordAtom { /** - * Dump the record content into <code>StringBuffer</code> - * * @return the string representation of the record data */ @Override public String toString(){ - StringBuffer out = new StringBuffer(); + StringBuilder out = new StringBuilder(); out.append("StyleTextPropAtom:\n"); if (!initialised) { |