Skip to content

Commit

Permalink
Delete SpanLink constructor that accepts a Span
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharycmontoya committed Dec 4, 2024
1 parent f0479ba commit 3d70a71
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tracer/src/Datadog.Trace/SpanLink.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@ public SpanLink(SpanContext spanLinkContext, List<KeyValuePair<string, string>>?
Attributes = attributes;
}

public SpanLink(Span spanToLink, List<KeyValuePair<string, string>>? attributes = null)
: this(spanToLink.Context, attributes)
{
}

public List<KeyValuePair<string, string>>? Attributes { get; private set; }

public SpanContext Context { get; }
Expand Down

0 comments on commit 3d70a71

Please sign in to comment.