From f6f5fecf18cc3f59c7575505945df1986a03d246 Mon Sep 17 00:00:00 2001 From: Ben Gruver Date: Sat, 18 Jan 2014 15:47:57 -0800 Subject: [PATCH] Minor comment fix in MutableMethodImplementation --- .../org/jf/dexlib2/builder/MutableMethodImplementation.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/brut.apktool.smali/dexlib2/src/main/java/org/jf/dexlib2/builder/MutableMethodImplementation.java b/brut.apktool.smali/dexlib2/src/main/java/org/jf/dexlib2/builder/MutableMethodImplementation.java index a3bfbd89..d536451f 100644 --- a/brut.apktool.smali/dexlib2/src/main/java/org/jf/dexlib2/builder/MutableMethodImplementation.java +++ b/brut.apktool.smali/dexlib2/src/main/java/org/jf/dexlib2/builder/MutableMethodImplementation.java @@ -96,8 +96,8 @@ public class MutableMethodImplementation implements MethodImplementation { index++; } - // the switch instructions must be converted last, so that any switch statements that refer to them have - // created the referring labels that we look for + // the switch payload instructions must be converted last, so that any switch statements that refer to them + // have created the referring labels that we look for for (Task switchPayloadTask: switchPayloadTasks) { switchPayloadTask.perform(); }