remove redundant statement in parseUtf8

VM heap allocated memory is already zero'd out, so there's no need to
explicitly end strings with a null character.
This commit is contained in:
Joel Dice 2011-03-31 19:02:03 -06:00
parent 384682431a
commit 8d9412c1e8

View File

@ -758,7 +758,6 @@ parseUtf8(Thread* t, Stream& s, unsigned length)
value = v;
}
byteArrayBody(t, value, vi) = 0;
return value;
}