Skip to content

Commit

Permalink
change variable name (#6439)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-zhang committed May 9, 2024
1 parent a745d60 commit af46b5e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ static SpanProcessor create(List<SpanProcessor> spanProcessorList) {
}

@Override
public void onStart(Context parentContext, ReadWriteSpan readableSpan) {
public void onStart(Context parentContext, ReadWriteSpan readWriteSpan) {
for (SpanProcessor spanProcessor : spanProcessorsStart) {
spanProcessor.onStart(parentContext, readableSpan);
spanProcessor.onStart(parentContext, readWriteSpan);
}
}

Expand Down

0 comments on commit af46b5e

Please sign in to comment.