From 7899d8e29297deb055b188273b72b9f596e31de7 Mon Sep 17 00:00:00 2001 From: dmex04 Date: Sun, 18 Oct 2009 08:22:18 +0000 Subject: [PATCH] comment cleanup :P git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2262 21ef857c-d57f-4fe0-8362-d861dc6d29cd --- trunk/ProcessHacker/Program/Program.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/trunk/ProcessHacker/Program/Program.cs b/trunk/ProcessHacker/Program/Program.cs index d8c439e7c..760a6b1c4 100644 --- a/trunk/ProcessHacker/Program/Program.cs +++ b/trunk/ProcessHacker/Program/Program.cs @@ -126,14 +126,12 @@ namespace ProcessHacker } // Check OS support. - if (OSVersion.IsBelow(WindowsVersion.TwoThousand) || OSVersion.IsAbove(WindowsVersion.Seven)) { PhUtils.ShowWarning("Your operating system is not supported by Process Hacker."); } - #if !DEBUG - // Setup exception handling at first opportunity to catch exceptions generatable anywhere. + // Setup exception handling at first opportunity. Application.ThreadException += new ThreadExceptionEventHandler(Application_ThreadException); AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException, true);