removed previous change, it was not needed. I had a debug setting that overrode the try-catch.

This commit is contained in:
John Jenko 2012-02-06 20:16:49 +00:00
parent c528032b92
commit fa900be307

View File

@ -493,7 +493,7 @@ namespace VEPROMS.CSLA.Library
{
try
{
if (!myProcess.HasExited && myProcess.PriorityClass != ProcessPriorityClass.High && myProcess.MainWindowTitle == "")
if (myProcess.PriorityClass != ProcessPriorityClass.High && myProcess.MainWindowTitle == "")
myProcess.PriorityClass = ProcessPriorityClass.High;
}
catch (Exception ex)