Remove unused method context instruction context list. I think the MethodContext class can be removed

This commit is contained in:
Adam
2016-04-02 22:29:38 -04:00
parent b77f0e3651
commit c816ee3c86
2 changed files with 0 additions and 3 deletions

View File

@@ -257,8 +257,6 @@ public class Frame
assert ictx.getInstruction() == oldCur;
execution.contexts.put(oldCur, ictx);
this.ctx.instructions.add(ictx);
execution.executed.add(oldCur);
processExceptions(oldCur);

View File

@@ -10,7 +10,6 @@ public class MethodContext
{
private Execution execution;
private MultiValueMap<InstructionContext, Instruction> visited = new MultiValueMap<>();
public List<InstructionContext> instructions = new ArrayList<>();
public MethodContext(Execution execution)
{