Skip to content

Commit

Permalink
LDEV-5207 actually apply offset
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Dec 19, 2024
1 parent bbbc5d4 commit 727b447
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ private static void call_Log(BytecodeContext bc, Method method, Position pos, St
GeneratorAdapter adapter = bc.getAdapter();
adapter.loadArg(0);
// adapter.checkCast(Types.PAGE_CONTEXT_IMPL);
adapter.push(pos.pos);
adapter.push(pos.pos - bc.getPageSource().getSourceOffset());
adapter.push(id);
adapter.invokeVirtual(Types.PAGE_CONTEXT, method);
}
Expand Down

0 comments on commit 727b447

Please sign in to comment.