From 7a884cfd214b4312304bb8c32e75102550740645 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Sun, 4 Aug 2024 14:26:01 -0400 Subject: [PATCH] remove duplicate call to OnBeforeStartInternal --- framework-dotnet/src/lib/MBS.Core/Application.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/framework-dotnet/src/lib/MBS.Core/Application.cs b/framework-dotnet/src/lib/MBS.Core/Application.cs index 255002d..6773ebe 100644 --- a/framework-dotnet/src/lib/MBS.Core/Application.cs +++ b/framework-dotnet/src/lib/MBS.Core/Application.cs @@ -119,11 +119,6 @@ public class Application protected virtual int StartInternal() { - CancelEventArgs ce = new CancelEventArgs(); - OnBeforeStartInternal(ce); - if (ce.Cancel) - return 2; - CommandLine cline = new CommandLine(); string[] args = CommandLine.Arguments;