Why use a string buffer, if you are concatenating in the loop, before appending
--- gov/nasa/jpf/jvm/JVM.java (revision 210)
+++ gov/nasa/jpf/jvm/JVM.java (working copy)
@@ -944,7 +944,8 @@
StringBuffer indent = new StringBuffer();
int i;
for (i = 0;i<=path.size();i++) {
- indent.append("|" + i);
+ indent.append('|');
+ indent.append(i);
}
System.out.println(indent + "|" +s);
}