Skip to content

Commit

Permalink
tracer: Fix the generated Java stub handlers (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
kokoslik committed Sep 22, 2024
1 parent b0b1ff2 commit 0733699
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frida_tools/tracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ def _create_stub_java_handler(self, target: TraceTarget, decorate) -> str:
* For full API reference, see: https://frida.re/docs/javascript-api/
*/
{
defineHandler({
/**
* Called synchronously when about to call %(display_name)s.
*
Expand Down Expand Up @@ -820,7 +820,7 @@ def _create_stub_java_handler(self, target: TraceTarget, decorate) -> str:
log(`<= ${JSON.stringify(retval)}`);
}
}
}
});
""" % {
"display_name": target.display_name
}
Expand Down

0 comments on commit 0733699

Please sign in to comment.