File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
Rubberduck.Core/UI/ToDoItems Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 18
18
using Rubberduck . Resources . ToDoExplorer ;
19
19
using Rubberduck . Interaction . Navigation ;
20
20
using Rubberduck . Parsing . UIContext ;
21
- using Rubberduck . VBEditor . Utility ;
22
21
using Rubberduck . SettingsProvider ;
23
22
using System . Windows . Controls ;
24
23
@@ -257,7 +256,7 @@ public void ExecuteCopyResultsCommand(object obj)
257
256
258
257
var title = string . Format ( resource , DateTime . Now . ToString ( CultureInfo . InvariantCulture ) , _items . Count ) ;
259
258
260
- var textResults = title + Environment . NewLine + string . Join ( "" , _items . OfType < IExportable > ( ) . Select ( result => result . ToClipboardString ( ) + Environment . NewLine ) . ToArray ( ) ) ;
259
+ var textResults = title + Environment . NewLine + string . Join ( string . Empty , _items . OfType < IExportable > ( ) . Select ( result => result . ToClipboardString ( ) + Environment . NewLine ) . ToArray ( ) ) ;
261
260
var csvResults = ExportFormatter . Csv ( resultArray , title , columnInfos ) ;
262
261
var htmlResults = ExportFormatter . HtmlClipboardFragment ( resultArray , title , columnInfos ) ;
263
262
var rtfResults = ExportFormatter . RTF ( resultArray , title ) ;
You can’t perform that action at this time.
0 commit comments