Remove unused exception variable in catch block

The exception variable 'ex' in the catch block was unused and has been removed for cleaner code.
This commit is contained in:
PrefacedCorg
2025-09-22 09:44:38 +08:00
parent 52eba9117b
commit 79264b187d
+1 -1
View File
@@ -940,7 +940,7 @@ namespace Ink_Canvas.Helpers
}
return 0;
}
catch (Exception ex)
catch (Exception)
{
return 0;
}