Minor comment fix in MutableMethodImplementation

This commit is contained in:
Ben Gruver 2014-01-18 15:47:57 -08:00 committed by Connor Tumbleson
parent 81e6af093b
commit f6f5fecf18

View File

@ -96,8 +96,8 @@ public class MutableMethodImplementation implements MethodImplementation {
index++; index++;
} }
// the switch instructions must be converted last, so that any switch statements that refer to them have // the switch payload instructions must be converted last, so that any switch statements that refer to them
// created the referring labels that we look for // have created the referring labels that we look for
for (Task switchPayloadTask: switchPayloadTasks) { for (Task switchPayloadTask: switchPayloadTasks) {
switchPayloadTask.perform(); switchPayloadTask.perform();
} }