Skip to content

Commit f3d2126

Browse files
committed
remove irrelevant comment
1 parent fdbd9a1 commit f3d2126

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

dd-java-agent/instrumentation/armeria/armeria-grpc-0.84/src/main/java/datadog/trace/instrumentation/armeria/grpc/client/ClientCallImplInstrumentation.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ public static void before(
198198
public static final class CloseObserver {
199199
@Advice.OnMethodEnter
200200
public static AgentScope before(@Advice.This ClientCall<?, ?> call) {
201-
// could create a message span here for the request
202201
AgentSpan span = InstrumentationContext.get(ClientCall.class, AgentSpan.class).remove(call);
203202
if (span != null) {
204203
return activateSpan(span);
@@ -225,7 +224,6 @@ public static void closeObserver(
225224
public static final class CloseObserverWithCause {
226225
@Advice.OnMethodEnter
227226
public static AgentScope before(@Advice.This ClientCall<?, ?> call) {
228-
// could create a message span here for the request
229227
AgentSpan span = InstrumentationContext.get(ClientCall.class, AgentSpan.class).get(call);
230228
if (span != null) {
231229
return activateSpan(span);

0 commit comments

Comments
 (0)