Skip to content

Commit

Permalink
fix: build warning from previous merge
Browse files Browse the repository at this point in the history
Signed-off-by: MTsfoni <[email protected]>
  • Loading branch information
mtsfoni committed Feb 2, 2025
1 parent a47707b commit d3f2aca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CycloneDX/Services/NugetV3Service.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ private string NormalizeUri(string input)

input = input.Trim();

if (Uri.TryCreate(input, ops, out Uri? result))
if (Uri.TryCreate(input, ops, out var result))
{
return result.ToString();
}
Expand Down

0 comments on commit d3f2aca

Please sign in to comment.