We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d07543 commit 24b9bbaCopy full SHA for 24b9bba
common/src/main/java/com/lightstep/tracer/shared/SpanContext.java
@@ -89,7 +89,8 @@ Map<String, String> getBaggage() {
89
return baggage;
90
}
91
92
- SpanContext withBaggageItem(String key, String value) {
+ @SuppressWarnings("WeakerAccess")
93
+ public SpanContext withBaggageItem(String key, String value) {
94
// Do NOT modify our own baggage, as SpanContext is expected to be immutable.
95
Map<String, String> newBaggage = new HashMap<String, String>(this.baggage);
96
newBaggage.put(key, value);
0 commit comments