]> source.dussan.org Git - poi.git/commitdiff
fixed error with HexDump
authorAndrew C. Oliver <acoliver@apache.org>
Mon, 2 Sep 2002 02:08:31 +0000 (02:08 +0000)
committerAndrew C. Oliver <acoliver@apache.org>
Mon, 2 Sep 2002 02:08:31 +0000 (02:08 +0000)
PR:
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352830 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/util/HexDump.java

index b506c65bba565fb63b43236c88a318a9b2a5c99d..376b66309721f3f684963913b16d8636eb0484e9 100644 (file)
@@ -118,7 +118,9 @@ public class HexDump
             {
                 chars_read = 16;
             }
-            buffer.append(dump(display_offset)).append(' ');
+            buffer.append(
+                        dump(display_offset)
+                         ).append(' ');
             for (int k = 0; k < 16; k++)
             {
                 if (k < chars_read)
@@ -253,7 +255,7 @@ public class HexDump
         28, 24, 20, 16, 12, 8, 4, 0
     };
 
-    private static StringBuffer dump(final long value)
+    private static String dump(final long value)
     {
         _lbuffer.setLength(0);
         for (int j = 0; j < 8; j++)
@@ -261,17 +263,17 @@ public class HexDump
             _lbuffer
                 .append(_hexcodes[ (( int ) (value >> _shifts[ j ])) & 15 ]);
         }
-        return _lbuffer;
+        return _lbuffer.toString();
     }
 
-    private static StringBuffer dump(final byte value)
+    private static String dump(final byte value)
     {
         _cbuffer.setLength(0);
         for (int j = 0; j < 2; j++)
         {
             _cbuffer.append(_hexcodes[ (value >> _shifts[ j + 6 ]) & 15 ]);
         }
-        return _cbuffer;
+        return _cbuffer.toString();
     }
 
     /**