Skip to content

Commit

Permalink
[pinpoint-apm#2584] Remove unnecessary API
Browse files Browse the repository at this point in the history
  • Loading branch information
emeroad committed Oct 23, 2017
1 parent f0d8894 commit 123e1e8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ public interface BaseTraceFactory {
// picked as sampling target at remote
Trace continueTraceObject(TraceId traceId);

Trace continueTraceObject(Trace trace);

@InterfaceAudience.LimitedPrivate("vert.x")
Trace continueAsyncTraceObject(TraceId traceId);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,6 @@ private ActiveTraceHandle registerActiveTrace(long localTransactionId, long star
}


@Override
public Trace continueTraceObject(Trace trace) {
return trace;
}


@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,6 @@ public Trace continueTraceObject(TraceId traceId) {
return baseTraceFactory.continueTraceObject(traceId);
}

@Override
public Trace continueTraceObject(Trace trace) {
if (logger.isDebugEnabled()) {
logger.debug("continueTraceObject(trace:{})", trace);
}

return baseTraceFactory.continueTraceObject(trace);
}

@Override
@InterfaceAudience.LimitedPrivate("vert.x")
Expand Down

0 comments on commit 123e1e8

Please sign in to comment.