Skip to content

Commit 301a07c

Browse files
committed
Fix more nullable annotations
1 parent e702811 commit 301a07c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tracer/src/Datadog.Trace/Activity/DuckTypes/IActivity.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ internal interface IActivity : IDuckType
3535

3636
DateTime StartTimeUtc { get; }
3737

38-
IEnumerable<KeyValuePair<string, string>> Baggage { get; }
38+
IEnumerable<KeyValuePair<string, string?>> Baggage { get; }
3939

40-
IEnumerable<KeyValuePair<string, string>> Tags { get; }
40+
IEnumerable<KeyValuePair<string, string?>> Tags { get; }
4141

4242
object AddBaggage(string key, string value);
4343

tracer/src/Datadog.Trace/Activity/DuckTypes/IActivity5.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ internal interface IActivity5 : IW3CActivity
1818

1919
ActivityKind Kind { get; }
2020

21-
IEnumerable<KeyValuePair<string, object>> TagObjects { get; }
21+
IEnumerable<KeyValuePair<string, object?>> TagObjects { get; }
2222

2323
ActivitySource Source { get; }
2424

0 commit comments

Comments
 (0)