From: Prashanth Govindarajan Date: Mon, 6 Apr 2020 15:22:34 +0000 (-0700) Subject: Changed triggered by the StringBuilder analyzer (#34574) X-Git-Tag: submit/tizen/20210909.063632~8738 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3e0b19fc7c3788d4300503689c5c1dba215cbc3a;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Changed triggered by the StringBuilder analyzer (#34574) --- diff --git a/src/libraries/System.Data.Common/src/System/Data/Common/DBCommandBuilder.cs b/src/libraries/System.Data.Common/src/System/Data/Common/DBCommandBuilder.cs index fd41835..079451e 100644 --- a/src/libraries/System.Data.Common/src/System/Data/Common/DBCommandBuilder.cs +++ b/src/libraries/System.Data.Common/src/System/Data/Common/DBCommandBuilder.cs @@ -293,8 +293,8 @@ namespace System.Data.Common private const string Comma = ", "; private const string Equal = " = "; - private const string LeftParenthesis = "("; - private const string RightParenthesis = ")"; + private const char LeftParenthesis = '('; + private const char RightParenthesis = ')'; private const string NameSeparator = "."; private const string IsNull = " IS NULL";