Skip to content

Commit 87fdac2

Browse files
committed
removed synchronized constructs from some functions to improve performance
1 parent 87d1a49 commit 87fdac2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • core/src/main/java/com/expedia/www/haystack/client

core/src/main/java/com/expedia/www/haystack/client/Span.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public final class Span implements io.opentracing.Span {
4040
this.operationName = operationName;
4141
this.context = context;
4242
this.startTime = startTime;
43-
this.tags = new HashMap<>();
43+
this.tags = tags;
4444
finished = false;
4545

4646
if (references == null) {

0 commit comments

Comments
 (0)