Skip to content

Commit

Permalink
feat(objectionary#329): fix the bug related to decompilation of Check…
Browse files Browse the repository at this point in the history
…Cast type
  • Loading branch information
volodya-lombrozo committed Jul 12, 2024
1 parent b65cf13 commit c0936e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ public final class CheckCastHandler implements InstructionHandler {
public void handle(final DecompilerState state) {
final AstNode value = state.stack().pop();
final Object type = state.operand(0);
state.stack().push(new CheckCast(Type.getType((String) type), value));
state.stack().push(new CheckCast(Type.getObjectType((String) type), value));
}
}

0 comments on commit c0936e5

Please sign in to comment.