Skip to content

Commit 11c9fc0

Browse files
committed
Merge remote-tracking branch 'upstream/next' into Issue5109_Consolidate_copy_command_logic
2 parents 5afab24 + d70d3cb commit 11c9fc0

File tree

2 files changed

+2
-48
lines changed

2 files changed

+2
-48
lines changed

Rubberduck.Core/UI/ToDoItems/ToDoExplorerViewModel.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
using Rubberduck.Resources.ToDoExplorer;
1919
using Rubberduck.Interaction.Navigation;
2020
using Rubberduck.Parsing.UIContext;
21-
using Rubberduck.VBEditor.Utility;
2221
using Rubberduck.SettingsProvider;
2322
using System.Windows.Controls;
2423
using Rubberduck.Formatters;
@@ -258,7 +257,7 @@ public void ExecuteCopyResultsCommand(object obj)
258257

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

261-
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());
262261
var csvResults = ExportFormatter.Csv(resultArray, title, columnInfos);
263262
var htmlResults = ExportFormatter.HtmlClipboardFragment(resultArray, title, columnInfos);
264263
var rtfResults = ExportFormatter.RTF(resultArray, title);

Rubberduck.Resources/RubberduckUI.Designer.cs

Lines changed: 1 addition & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)