Hard to follow, exception removal and unused block (only from the now

removed exceptions from what I can tell)
This commit is contained in:
Adam
2015-05-10 16:42:47 -04:00
parent 2edf9d2117
commit fa3e9c0262
14 changed files with 181 additions and 8 deletions

View File

@@ -55,6 +55,17 @@ public class Method
{
assert callsFrom.isEmpty();
}
protected void removeParameter(int i)
{
// If this is a non static method parameter 0 is this
if (!this.isStatic())
--i;
arguments.remove(i);
// XXX now remove from code.
}
public Methods getMethods()
{