From 4e498cbee6dc5377f89b61985e97a3b5fb494c20 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Thu, 8 Feb 2018 10:24:02 -0500 Subject: [PATCH] Removing redundant code --- ICD.Common.Utils/StringUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICD.Common.Utils/StringUtils.cs b/ICD.Common.Utils/StringUtils.cs index c256216..36008e7 100644 --- a/ICD.Common.Utils/StringUtils.cs +++ b/ICD.Common.Utils/StringUtils.cs @@ -492,7 +492,7 @@ namespace ICD.Common.Utils [PublicAPI] public static string ToTitleCase(string input) { - return CultureInfo.CurrentCulture.TextInfo.ToTitleCase(input.ToLower()); + return CultureInfo.CurrentCulture.TextInfo.ToTitleCase(input); } ///