Skip to content

Commit

Permalink
Fixed Issue #119 -- there was an ASSERT statement with a side effect.
Browse files Browse the repository at this point in the history
  • Loading branch information
aunkrig committed Mar 16, 2020
1 parent 42c2ec0 commit 166c21e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion janino/src/main/java/org/codehaus/janino/CodeContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -1441,7 +1441,8 @@ interface FixUp {
*/
public void
popUninitializedVariableOperand() {
assert this.popOperand() instanceof StackMapTableAttribute.UninitializedVariableInfo;
final VerificationTypeInfo op = this.popOperand();
assert op instanceof StackMapTableAttribute.UninitializedVariableInfo;
}

/**
Expand Down

0 comments on commit 166c21e

Please sign in to comment.