From 4148ccf30358a8b87e256fb8e9f21244db178c00 Mon Sep 17 00:00:00 2001 From: Eunbin Son Date: Wed, 5 Aug 2026 10:19:47 +0900 Subject: [PATCH] Fix invalid javadoc reference on the remote flag in SpanContext --- .../src/main/java/io/opentelemetry/api/trace/SpanContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/all/src/main/java/io/opentelemetry/api/trace/SpanContext.java b/api/all/src/main/java/io/opentelemetry/api/trace/SpanContext.java index c01f1b8e961..684108b8315 100644 --- a/api/all/src/main/java/io/opentelemetry/api/trace/SpanContext.java +++ b/api/all/src/main/java/io/opentelemetry/api/trace/SpanContext.java @@ -13,7 +13,7 @@ * A class that represents a span context. A span context contains the state that must propagate to * child {@link Span}s and across process boundaries. It contains the identifiers (a {@link TraceId * trace_id} and {@link SpanId span_id}) associated with the {@link Span}, {@link TraceFlags}, as - * well as the {@link TraceState traceState} and the {@link boolean remote} flag. + * well as the {@link TraceState traceState} and the {@code remote} flag. * *

Implementations of this interface *must* be immutable and have well-defined value-based * equals/hashCode implementations. If an implementation does not strictly conform to these