Skip to content

Commit cab50d8

Browse files
committed
address comments pt.1
1 parent b02cb33 commit cab50d8

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

tracer/src/Datadog.Trace/Agent/MessagePack/TraceChunkModel.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@ public SpanModel GetSpanModel(int spanIndex)
207207
return new SpanModel(
208208
span,
209209
this,
210-
isLocalRoot,
211-
isChunkOrphan,
212-
isFirstSpan);
210+
isLocalRoot: isLocalRoot,
211+
isChunkOrphan: isChunkOrphan,
212+
isFirstSpanInChunk: isFirstSpan);
213213
}
214214

215215
/// <summary>

tracer/src/Datadog.Trace/ProcessTags.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,9 @@
88
using System;
99
using System.Collections.Generic;
1010
using System.IO;
11-
using System.Linq;
1211
using System.Reflection;
1312
using System.Text;
1413
using Datadog.Trace.Processors;
15-
using Datadog.Trace.VendoredMicrosoftCode.System.Collections.Immutable;
16-
using Datadog.Trace.Vendors.Newtonsoft.Json.Utilities;
1714

1815
namespace Datadog.Trace;
1916

0 commit comments

Comments
 (0)