Fixed StringBuilder.deleteCharAt

This commit is contained in:
Steve Hannah 2015-05-30 00:37:38 -07:00
parent 779b482a43
commit bbf067d4a5

View File

@ -686,7 +686,6 @@ class TAbstractStringBuilder extends TObject implements TSerializable, TCharSequ
for (int i = index; i < length; ++i) { for (int i = index; i < length; ++i) {
buffer[i] = buffer[i + 1]; buffer[i] = buffer[i + 1];
} }
--length;
return this; return this;
} }