File tree Expand file tree Collapse file tree 2 files changed +0
-18
lines changed
dd-trace-core/src/main/java/datadog/trace/core
internal-api/src/main/java/datadog/trace/bootstrap/instrumentation/api Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -965,11 +965,6 @@ public AgentSpan activeSpan() {
965965 return scopeManager .activeSpan ();
966966 }
967967
968- @ Override
969- public AgentScope activeScope () {
970- return scopeManager .active ();
971- }
972-
973968 @ Override
974969 public void checkpointActiveForRollback () {
975970 this .scopeManager .checkpointActiveForRollback ();
Original file line number Diff line number Diff line change @@ -189,12 +189,6 @@ public static AgentSpan activeSpan() {
189189 return get ().activeSpan ();
190190 }
191191
192- /** @deprecated To be removed, do not use. */
193- @ Deprecated
194- public static AgentScope activeScope () {
195- return get ().activeScope ();
196- }
197-
198192 /**
199193 * Checks whether asynchronous propagation is enabled, meaning this context will propagate across
200194 * asynchronous boundaries.
@@ -368,8 +362,6 @@ AgentSpan startSpan(
368362
369363 AgentSpan activeSpan ();
370364
371- AgentScope activeScope ();
372-
373365 default AgentSpan blackholeSpan () {
374366 final AgentSpan active = activeSpan ();
375367 return new BlackHoleSpan (active != null ? active .getTraceId () : DDTraceId .ZERO );
@@ -539,11 +531,6 @@ public AgentSpan activeSpan() {
539531 return NoopSpan .INSTANCE ;
540532 }
541533
542- @ Override
543- public AgentScope activeScope () {
544- return null ;
545- }
546-
547534 @ Override
548535 public AgentSpan blackholeSpan () {
549536 return NoopSpan .INSTANCE ; // no-op tracer stays no-op
You can’t perform that action at this time.
0 commit comments