Changed triggered by the StringBuilder analyzer (#34574)
authorPrashanth Govindarajan <prgovi@microsoft.com>
Mon, 6 Apr 2020 15:22:34 +0000 (08:22 -0700)
committerGitHub <noreply@github.com>
Mon, 6 Apr 2020 15:22:34 +0000 (08:22 -0700)
src/libraries/System.Data.Common/src/System/Data/Common/DBCommandBuilder.cs

index fd41835..079451e 100644 (file)
@@ -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";