From 389b20e52182862a6148b9564530093cb2074135 Mon Sep 17 00:00:00 2001 From: codefactor-io Date: Sun, 29 Sep 2024 14:12:44 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Refactor=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/FluentHub.Octicons.Generator/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FluentHub.Octicons.Generator/Program.cs b/src/FluentHub.Octicons.Generator/Program.cs index e5c18e08c..f437f2e41 100644 --- a/src/FluentHub.Octicons.Generator/Program.cs +++ b/src/FluentHub.Octicons.Generator/Program.cs @@ -1,4 +1,4 @@ -using Humanizer; +using Humanizer; using System; using System.IO; using System.Linq; @@ -140,7 +140,7 @@ private static string ConvertSvgEntity(string path) svgXamlTemplate.AppendLine(@$" Height=""{iconSize}"""); svgXamlTemplate.AppendLine(@$" Stretch=""Uniform"">"); svgXamlTemplate.AppendLine(@$" "); - svgXamlTemplate.Append(pathDataBuilder.ToString()); + svgXamlTemplate.Append(pathDataBuilder); svgXamlTemplate.AppendLine(@$" "); svgXamlTemplate.AppendLine(@$" "); svgXamlTemplate.AppendLine(@$" ");