File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
RetailCoder.VBE/UI/Command Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ protected override void OnExecute(object parameter)
54
54
return ;
55
55
}
56
56
57
- if ( CompileAllProjects ( out var failedNames ) )
57
+ if ( AreAllProjectsCompiled ( out var failedNames ) )
58
58
{
59
59
if ( ! PromptUserToContinue ( failedNames ) )
60
60
{
@@ -67,8 +67,6 @@ protected override void OnExecute(object parameter)
67
67
68
68
private bool VerifyCompileOnDemand ( )
69
69
{
70
- //Command_Reparse_CompileOnDemandEnabled
71
-
72
70
if ( _vbeSettings . CompileOnDemand )
73
71
{
74
72
return DialogResult . Yes == _messageBox . Show ( RubberduckUI . Command_Reparse_CompileOnDemandEnabled ,
@@ -79,7 +77,7 @@ private bool VerifyCompileOnDemand()
79
77
return true ;
80
78
}
81
79
82
- private bool CompileAllProjects ( out List < string > failedNames )
80
+ private bool AreAllProjectsCompiled ( out List < string > failedNames )
83
81
{
84
82
failedNames = new List < string > ( ) ;
85
83
using ( var projects = _vbe . VBProjects )
You can’t perform that action at this time.
0 commit comments