removed superfluous methods

git-svn-id: https://smali.googlecode.com/svn/trunk@179 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com
2009-06-20 20:24:21 +00:00
parent 1af01ba107
commit 1401347994

View File

@ -54,26 +54,11 @@ public class EncodedArrayItem extends OffsettedItem<EncodedArrayItem> {
};
}
public void readFrom(Input in) {
super.readFrom(in);
}
public int place(int index, int offset) {
return super.place(index, offset);
}
public void writeTo(AnnotatedOutput out) {
super.writeTo(out);
}
protected int getAlignment() {
return 1;
}
public int getOffset() {
return super.getOffset();
}
public void add(int index, EncodedValue value) {
encodedArray.add(index, value);
}