Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tracer/build/_build/MetricHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ private static string SanitizeTagValue(string tag)
static bool TryNormalizeTagName(
string value,
bool normalizeSpaces,
[NotNullWhen(returnValue: true)] out string? normalizedTagName)
[NotNullWhen(returnValue: true)] out string normalizedTagName)
{
normalizedTagName = null;

Expand Down Expand Up @@ -123,7 +123,7 @@ static bool TryNormalizeTagName(

static bool IsValidTagName(
string value,
[NotNullWhen(returnValue: true)] out string? trimmedValue)
[NotNullWhen(returnValue: true)] out string trimmedValue)
{
trimmedValue = null;

Expand Down
Loading