Fix a typo in the commented out format for a packed-switch structure

git-svn-id: https://smali.googlecode.com/svn/trunk@697 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2010-04-03 23:03:06 +00:00
parent d293bc1eb3
commit c6734e8a60

View File

@ -67,7 +67,7 @@ public class PackedSwitchMethodItem extends InstructionMethodItem<PackedSwitchDa
@Override
public boolean writeTo(IndentingWriter writer) throws IOException {
if (dead) {
writer.write("'#.packed-switch ");
writer.write("#.packed-switch ");
IntegerRenderer.writeTo(writer, instruction.getFirstKey());
writer.write('\n');
for (LabelMethodItem label: labels) {