Skip to content

Commit a4fb5a6

Browse files
committed
Remove unused method
1 parent 3a8d4a8 commit a4fb5a6

File tree

1 file changed

+0
-9
lines changed
  • internal-api/src/main/java/datadog/trace/bootstrap/instrumentation/api

1 file changed

+0
-9
lines changed

internal-api/src/main/java/datadog/trace/bootstrap/instrumentation/api/TagContext.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -176,15 +176,6 @@ public void putTag(final String key, final String value) {
176176
this.tags.set(key, value);
177177
}
178178

179-
public void putTagIfAbsent(final String key, final String value) {
180-
if (this.tags == null) {
181-
this.tags = TagMap.create(4);
182-
}
183-
if (!this.tags.containsKey(key)) {
184-
this.tags.set(key, value);
185-
}
186-
}
187-
188179
@Override
189180
public final int getSamplingPriority() {
190181
return samplingPriority;

0 commit comments

Comments
 (0)