getObject on String should really just return the string

This commit is contained in:
Adam
2015-01-26 02:25:42 -05:00
parent 55dca4fa9b
commit cec4f0ac59
7 changed files with 34 additions and 2 deletions

View File

@@ -36,6 +36,11 @@ public abstract class Instruction
{
return length;
}
public String getDesc(Frame frame)
{
return null;
}
protected void addJump(int offset)
{