Remove outdated ExtendedSpanBuilder javadoc example (#6659)

This commit is contained in:
jack-berg 2024-08-20 22:05:51 -05:00 committed by GitHub
parent dc4cc27009
commit 97b3fa42f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 7 deletions

View File

@ -29,13 +29,6 @@ public interface ExtendedSpanBuilder extends SpanBuilder {
* <p>The span context will be extracted from the <code>carrier</code>, which you usually get from
* HTTP headers of the metadata of a message you're processing.
*
* <p>A typical usage would be: <code>
* ExtendedTracer.create(tracer)
* .setSpanKind(SpanKind.SERVER)
* .setParentFrom(propagators, carrier)
* .run("my-span", () -> { ... });
* </code>
*
* @param propagators provide the propagators from {@link OpenTelemetry#getPropagators()}
* @param carrier the string map where to extract the span context from
*/