Skip to content

Commit

Permalink
Remove unsed method argument (#11538)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit committed Jun 7, 2024
1 parent 8ada04a commit ab4432c
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@ public static void onEnter(
}

@Advice.OnMethodExit(onThrowable = Throwable.class, suppress = Throwable.class)
public static void onExit(
@Advice.This ServerBuilder<?> serverBuilder,
@Advice.Local("otelCallDepth") CallDepth callDepth) {
public static void onExit(@Advice.Local("otelCallDepth") CallDepth callDepth) {
callDepth.decrementAndGet();
}
}
Expand Down

0 comments on commit ab4432c

Please sign in to comment.