Fixing String.Format to string.Format

This commit is contained in:
benrr101
2016-08-16 12:28:52 -07:00
parent 1acc8c9122
commit 9fa183ea6d
4 changed files with 6 additions and 6 deletions

View File

@@ -182,7 +182,7 @@ namespace Microsoft.SqlTools.ServiceLayer.Workspace
foreach (var textChange in textChangeParams.ContentChanges)
{
string fileUri = textChangeParams.Uri ?? textChangeParams.TextDocument.Uri;
msg.AppendLine(String.Format(" File: {0}", fileUri));
msg.AppendLine(string.Format(" File: {0}", fileUri));
ScriptFile changedFile = Workspace.GetFile(fileUri);