Skip to content

Commit 0052c55

Browse files
committed
chore(core): Remove deprecated method override
1 parent 3279e89 commit 0052c55

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

internal-api/src/main/java/datadog/trace/bootstrap/instrumentation/api/AgentScope.java

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ static AgentScope noopScope() {
2727
void close();
2828

2929
interface Continuation extends TraceScope.Continuation {
30-
3130
@Override
3231
Continuation hold();
3332

internal-api/src/main/java/datadog/trace/bootstrap/instrumentation/api/NoopScope.java

-8
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,11 @@ public byte source() {
1515
return 0;
1616
}
1717

18-
@Override
19-
public void setAsyncPropagation(final boolean value) {}
20-
2118
@Override
2219
public Continuation capture() {
2320
return AgentTracer.NoopContinuation.INSTANCE;
2421
}
2522

2623
@Override
2724
public void close() {}
28-
29-
@Override
30-
public boolean isAsyncPropagating() {
31-
return false;
32-
}
3325
}

0 commit comments

Comments
 (0)