Skip to content

Commit 639846f

Browse files
committed
Replace with string.Empty
1 parent 8b4fe5a commit 639846f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rubberduck.Core/UI/ToDoItems/ToDoExplorerViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public void ExecuteCopyResultsCommand(object obj)
257257

258258
var title = string.Format(resource, DateTime.Now.ToString(CultureInfo.InvariantCulture), _items.Count);
259259

260-
var textResults = title + Environment.NewLine + string.Join("", _items.OfType<IExportable>().Select(result => result.ToClipboardString() + Environment.NewLine).ToArray());
260+
var textResults = title + Environment.NewLine + string.Join(string.Empty, _items.OfType<IExportable>().Select(result => result.ToClipboardString() + Environment.NewLine).ToArray());
261261
var csvResults = ExportFormatter.Csv(resultArray, title, columnInfos);
262262
var htmlResults = ExportFormatter.HtmlClipboardFragment(resultArray, title, columnInfos);
263263
var rtfResults = ExportFormatter.RTF(resultArray, title);

0 commit comments

Comments
 (0)