mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
bugfixes
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user