From 5077640cf218568796212bfead6be590b5008d3c Mon Sep 17 00:00:00 2001 From: Antoine Rybacki <15911822+Lifeismana@users.noreply.github.com> Date: Tue, 14 Nov 2023 22:39:12 +0100 Subject: [PATCH] fix CA1834 --- DepotDownloader/HttpDiagnosticEventListener.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DepotDownloader/HttpDiagnosticEventListener.cs b/DepotDownloader/HttpDiagnosticEventListener.cs index 31546b97..f3b11429 100644 --- a/DepotDownloader/HttpDiagnosticEventListener.cs +++ b/DepotDownloader/HttpDiagnosticEventListener.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Diagnostics.Tracing; using System.Text; @@ -35,7 +35,7 @@ namespace DepotDownloader } } - sb.Append(")"); + sb.Append(')'); Console.WriteLine(sb.ToString()); } }