diff --git a/Libs/CMS_CORE_Library.dll b/Libs/CMS_CORE_Library.dll index 8eae20b6..8083bfd0 100644 Binary files a/Libs/CMS_CORE_Library.dll and b/Libs/CMS_CORE_Library.dll differ diff --git a/Step.Tasks/ThreadsFunctions.cs b/Step.Tasks/ThreadsFunctions.cs index 5bfa35ac..5ee21889 100644 --- a/Step.Tasks/ThreadsFunctions.cs +++ b/Step.Tasks/ThreadsFunctions.cs @@ -56,7 +56,7 @@ public static class ThreadsFunctions Thread.Sleep(200); } } - catch (ThreadAbortException ex) + catch (ThreadAbortException) { ncHandler.Dispose(); } @@ -95,7 +95,7 @@ public static class ThreadsFunctions Thread.Sleep(1000); } } - catch (ThreadAbortException ex) + catch (ThreadAbortException) { ncHandler.Dispose(); } @@ -135,7 +135,7 @@ public static class ThreadsFunctions Thread.Sleep(200); } } - catch (ThreadAbortException ex) + catch (ThreadAbortException) { ncHandler.Dispose(); } @@ -176,7 +176,7 @@ public static class ThreadsFunctions Thread.Sleep(400); } } - catch (ThreadAbortException ex) + catch (ThreadAbortException) { ncHandler.Dispose(); } diff --git a/Step.UI/ServerControlWindow.Designer.cs b/Step.UI/ServerControlWindow.Designer.cs index 89e4b2ea..6c186ca3 100644 --- a/Step.UI/ServerControlWindow.Designer.cs +++ b/Step.UI/ServerControlWindow.Designer.cs @@ -482,7 +482,6 @@ namespace Step.UI this.metroLabel1.TabIndex = 34; this.metroLabel1.Text = "Vendor:"; this.metroLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.metroLabel1.Click += new System.EventHandler(this.metroLabel1_Click); // // ThreadsInfo // diff --git a/Step.UI/ServerControlWindow.cs b/Step.UI/ServerControlWindow.cs index 62cce78d..1cd410db 100644 --- a/Step.UI/ServerControlWindow.cs +++ b/Step.UI/ServerControlWindow.cs @@ -225,10 +225,5 @@ namespace Step.UI }); } - - private void metroLabel1_Click(object sender, EventArgs e) - { - - } } }