This commit is contained in:
Joel Dice
2007-07-07 17:47:35 -06:00
parent e5bea7a455
commit f71c77298c
18 changed files with 482 additions and 176 deletions

View File

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