From d9e1f0cb082dcd57a0cb3a113f5f631304d24758 Mon Sep 17 00:00:00 2001 From: Frog Date: Mon, 15 Jun 2026 03:02:51 -0700 Subject: [PATCH] Remove Double Try - Remove shitty double try code, cleanup can happen in a single try. --- CreamInstaller/Utility/ProgramData.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/CreamInstaller/Utility/ProgramData.cs b/CreamInstaller/Utility/ProgramData.cs index 50da3f1..68f25f9 100644 --- a/CreamInstaller/Utility/ProgramData.cs +++ b/CreamInstaller/Utility/ProgramData.cs @@ -146,13 +146,6 @@ internal static event Action OnLogError; { if (File.Exists(ScanLogPath)) File.Delete(ScanLogPath); - } - catch - { - // ignored - } - try - { if (File.Exists(SteamLogPath)) File.Delete(SteamLogPath); }