re-enable assertion

This commit is contained in:
Julian Dolby 2014-10-10 17:44:06 -04:00
parent f4f6f06d93
commit 4e52c00a4b
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ public abstract class SSAAbstractThrowInstruction extends SSAInstruction {
public SSAAbstractThrowInstruction(int iindex, int exception) {
super(iindex);
//assert exception > 0;
assert exception > 0;
this.exception = exception;
}