We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 403e79e commit 3aab7b5Copy full SHA for 3aab7b5
RetailCoder.VBE/Navigation/CodeExplorer/CodeExplorerViewModel.cs
@@ -15,7 +15,7 @@
15
16
namespace Rubberduck.Navigation.CodeExplorer
17
{
18
- public class CodeExplorerViewModel : ViewModelBase, IDisposable
+ public class CodeExplorerViewModel : ViewModelBase
19
20
private readonly FolderHelper _folderHelper;
21
private readonly RubberduckParserState _state;
@@ -362,16 +362,5 @@ private void ExecuteRemoveComand(object param)
362
363
_externalRemoveCommand.Execute(param);
364
}
365
-
366
- public void Dispose()
367
- {
368
- foreach (var command in _commands)
369
370
- if (command is IDisposable)
371
372
- ((IDisposable) command).Dispose();
373
- }
374
375
376
377
0 commit comments