Don't write out the value_type in ArrayEncodedSubValue

git-svn-id: https://smali.googlecode.com/svn/trunk@392 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2009-08-11 05:24:56 +00:00
parent 99d01fb803
commit 5c0670b2da

View File

@ -66,7 +66,6 @@ public class ArrayEncodedSubValue extends EncodedValue {
/** {@inheritDoc} */
public void writeValue(AnnotatedOutput out) {
out.writeByte(ValueType.VALUE_ARRAY.value);
out.writeUnsignedLeb128(values.length);
for (EncodedValue encodedValue: values) {
encodedValue.writeValue(out);