Skip to content

Commit

Permalink
Merge pull request #711 from bytedance/fix-posthook
Browse files Browse the repository at this point in the history
fix posthook
  • Loading branch information
yoloyyh authored Nov 20, 2024
2 parents d1f03d1 + d340452 commit 9e37d8c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,10 @@ public void visitMaxs(final int maxStack, final int maxLocals) {

if (exceptionHook == null || exceptionHook == "") {

if (xHook == null || xHook == "") {
if (postHook == null || postHook == "") {
xHook = "trace";
} else {
xHook = postHook;
}

Type[] types = Type.getArgumentTypes(methodDesc);
Expand Down

0 comments on commit 9e37d8c

Please sign in to comment.