summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/cmscore/cert/PrettyPrintFormat.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/cmscore/cert/PrettyPrintFormat.java')
-rw-r--r--base/common/src/com/netscape/cmscore/cert/PrettyPrintFormat.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/base/common/src/com/netscape/cmscore/cert/PrettyPrintFormat.java b/base/common/src/com/netscape/cmscore/cert/PrettyPrintFormat.java
index 7b7ce64f9..60bc8c8f6 100644
--- a/base/common/src/com/netscape/cmscore/cert/PrettyPrintFormat.java
+++ b/base/common/src/com/netscape/cmscore/cert/PrettyPrintFormat.java
@@ -107,7 +107,7 @@ public class PrettyPrintFormat implements IPrettyPrintFormat {
if (in == null) return "";
- StringBuffer sb = new StringBuffer();
+ StringBuffer sb = new StringBuffer(indent(indentSize));
int hexCount = 0;
char c[];
int j = 0;
@@ -120,7 +120,6 @@ public class PrettyPrintFormat implements IPrettyPrintFormat {
char sep = separator.charAt(0);
- sb.append(indent(indentSize));
for (int i = 0; i < in.length; i++) {
if (lineLen > 0 && hexCount == lineLen) {
c[j++] = '\n';