Skip to content

Commit 53db025

Browse files
committed
Revert "Parse for find symbol"
This reverts commit 57712d0.
1 parent 67bfa3d commit 53db025

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

RetailCoder.VBE/UI/Command/FindSymbolCommand.cs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public FindSymbolCommand(IVBE vbe, RubberduckParserState state, DeclarationIconC
2626
_state = state;
2727
_iconCache = iconCache;
2828
}
29-
29+
3030
public override RubberduckHotkey Hotkey
3131
{
3232
get { return RubberduckHotkey.FindSymbol; }
@@ -39,14 +39,6 @@ protected override void OnExecute(object parameter)
3939
{
4040
viewModel.Navigate += (sender, e) => { view.Hide(); };
4141
viewModel.Navigate += OnDialogNavigate;
42-
43-
bool needsAParse = _state.IsDirty();
44-
if (needsAParse)
45-
{
46-
//TODO: Implement parse.
47-
48-
}
49-
5042
view.ShowDialog();
5143
_navigateCommand.Execute(_selected);
5244
}

RetailCoder.VBE/UI/FindSymbol/FindSymbolDialog.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ public FindSymbolDialog()
2828
InitializeComponent();
2929

3030
Text = string.Format("Rubberduck - {0}", RubberduckUI.FindSymbolDialog_Caption);
31-
32-
3331
}
3432

3533
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)

0 commit comments

Comments
 (0)