mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 16:14:10 -08:00
Fixed StringBuilder.deleteCharAt
This commit is contained in:
parent
779b482a43
commit
bbf067d4a5
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user