remove duplicate call to OnBeforeStartInternal

This commit is contained in:
Michael Becker 2024-08-04 14:26:01 -04:00
parent 833c378b1d
commit 7a884cfd21

View File

@ -119,11 +119,6 @@ public class Application
protected virtual int StartInternal() protected virtual int StartInternal()
{ {
CancelEventArgs ce = new CancelEventArgs();
OnBeforeStartInternal(ce);
if (ce.Cancel)
return 2;
CommandLine cline = new CommandLine(); CommandLine cline = new CommandLine();
string[] args = CommandLine.Arguments; string[] args = CommandLine.Arguments;