Debugging stuff.

This commit is contained in:
Adam
2015-07-12 21:43:40 -04:00
parent ec50303962
commit b7d4d4981f
16 changed files with 113 additions and 54 deletions

View File

@@ -35,13 +35,6 @@ public class Exception
assert start != null;
assert end != null;
assert handler != null;
handler.exce.add(this);
}
protected void remove()
{
handler.exce.remove(this);
}
public void write(DataOutputStream out) throws IOException
@@ -83,11 +76,7 @@ public class Exception
end = newi;
if (handler == oldi)
{
handler.exce.remove(this);
handler = newi;
handler.exce.add(this);
}
}
public Class getCatchType()