From 94bdd6e16a6725f17342d53cdf37c866d062c847 Mon Sep 17 00:00:00 2001 From: Dani Date: Thu, 6 May 2021 11:21:59 +0200 Subject: [PATCH] docs(Tracer): remove link to nonexistent method The previously referred method was removed from the API, hence it no longer exists. Must say too that semantic versioning was used wrong! Removing this method was a breaking change. The same as removing `ScopeManager.activate(Span span, boolean finishSpanOnClose)`. Please be more careful with the versioning of the libs, deprecating a method is better than removing directly :) --- opentracing-api/src/main/java/io/opentracing/Tracer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentracing-api/src/main/java/io/opentracing/Tracer.java b/opentracing-api/src/main/java/io/opentracing/Tracer.java index 7dc047ac..8ec04425 100644 --- a/opentracing-api/src/main/java/io/opentracing/Tracer.java +++ b/opentracing-api/src/main/java/io/opentracing/Tracer.java @@ -207,7 +207,7 @@ interface SpanBuilder { * * ... then an inferred {@link References#CHILD_OF} reference is created to the * {@link ScopeManager#activeSpan()}'s {@link SpanContext} when either - * {@link SpanBuilder#start()} or {@link SpanBuilder#startActive} is invoked. + * {@link SpanBuilder#start()} is invoked. * @return the newly-started Span instance, which has *not* been automatically registered * via the {@link ScopeManager}