From e7c1d3dd2e509c1d87c8c004ed6fe08b7ba0f062 Mon Sep 17 00:00:00 2001 From: Mundairson Date: Tue, 5 Jun 2018 12:25:37 +0100 Subject: [PATCH] Removed old version. --- src/Umbraco.Core/StringExtensions.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Umbraco.Core/StringExtensions.cs b/src/Umbraco.Core/StringExtensions.cs index e4f313795b..ce9ac77712 100644 --- a/src/Umbraco.Core/StringExtensions.cs +++ b/src/Umbraco.Core/StringExtensions.cs @@ -477,9 +477,6 @@ namespace Umbraco.Core /// empty, or consists only of white-space characters, otherwise /// returns . public static bool IsNullOrWhiteSpace(this string value) => string.IsNullOrWhiteSpace(value); - //{ - // return (value == null) || (value.Trim().Length == 0); - //} public static string IfNullOrWhiteSpace(this string str, string defaultValue) {