From 5bbf2f50de7b04f418e2f123c696f9694f98aa1a Mon Sep 17 00:00:00 2001 From: Xjph Date: Wed, 1 Mar 2023 16:31:18 -0330 Subject: [PATCH] Remove unused variables from catch --- ObservatoryCore/PluginManagement/PluginEventHandler.cs | 2 +- ObservatoryCore/UI/Views/NotificationView.axaml.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ObservatoryCore/PluginManagement/PluginEventHandler.cs b/ObservatoryCore/PluginManagement/PluginEventHandler.cs index d9cbf2d..3be434d 100644 --- a/ObservatoryCore/PluginManagement/PluginEventHandler.cs +++ b/ObservatoryCore/PluginManagement/PluginEventHandler.cs @@ -116,7 +116,7 @@ namespace Observatory.PluginManagement { timer.Start(); } - catch (ObjectDisposedException ode) + catch { // Not sure why this happens, but I've reproduced it twice in a row after hitting // read-all while also playing (ie. generating journals). diff --git a/ObservatoryCore/UI/Views/NotificationView.axaml.cs b/ObservatoryCore/UI/Views/NotificationView.axaml.cs index e29fe15..653cc87 100644 --- a/ObservatoryCore/UI/Views/NotificationView.axaml.cs +++ b/ObservatoryCore/UI/Views/NotificationView.axaml.cs @@ -232,7 +232,7 @@ namespace Observatory.UI.Views // Cleanup XFixesDestroyRegion((IntPtr)display, region); } - catch (DllNotFoundException ignored) + catch { // libXfixes is not installed for some reason }