fix warning
This commit is contained in:
parent
ef8864e685
commit
b87762353b
|
@ -151,7 +151,7 @@ class SdkTracerTest {
|
||||||
private static class SimpleSpanOperation implements OperationUpdater {
|
private static class SimpleSpanOperation implements OperationUpdater {
|
||||||
private final SdkTracer tracer;
|
private final SdkTracer tracer;
|
||||||
|
|
||||||
public SimpleSpanOperation(SdkTracer tracer) {
|
private SimpleSpanOperation(SdkTracer tracer) {
|
||||||
this.tracer = tracer;
|
this.tracer = tracer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -168,7 +168,7 @@ class SdkTracerTest {
|
||||||
|
|
||||||
private static class CountingSpanExporter implements SpanExporter {
|
private static class CountingSpanExporter implements SpanExporter {
|
||||||
|
|
||||||
public final AtomicLong numberOfSpansExported = new AtomicLong();
|
private final AtomicLong numberOfSpansExported = new AtomicLong();
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public CompletableResultCode export(Collection<SpanData> spans) {
|
public CompletableResultCode export(Collection<SpanData> spans) {
|
||||||
|
|
Loading…
Reference in New Issue