remove useless api method

This commit is contained in:
Guillaume Polaert 2017-04-26 16:28:27 +02:00
parent 445e9dac77
commit 352e10e4c6
1 changed files with 0 additions and 4 deletions

View File

@ -38,10 +38,6 @@ public class DDSpan implements io.opentracing.Span {
this.durationNano = System.nanoTime() - startTime;
}
public void finishWithDuration(long durationNano) {
this.durationNano = durationNano;
}
public void finish(long stopTime) {
this.durationNano = startTime - stopTime;
}