heap o' bugfixes

This commit is contained in:
Joel Dice
2007-07-10 19:38:06 -06:00
parent eba6a42700
commit 93748f2df9
10 changed files with 60 additions and 39 deletions

View File

@ -27,7 +27,7 @@ public class StringBuilder {
index -= c.value.length();
c.value.getChars(0, c.value.length(), array, index);
}
return new String(array, 0, array.length, false);
return new String(array, 0, length, false);
}
private static class Cell {