chore: clean up file-scoped namespace fallout

This commit is contained in:
goat 2022-10-29 15:54:24 +02:00
parent b4a89020e0
commit 09c4828a9e
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
7 changed files with 16 additions and 16 deletions

View file

@ -2656,16 +2656,16 @@ internal class PluginInstallerWindow : Window, IDisposable
{
Log.Error(ex, "Plugin installer threw an error");
#if DEBUG
if (!string.IsNullOrEmpty(ex.Message))
errorModalMessage += $"\n\n{ex.Message}";
if (!string.IsNullOrEmpty(ex.Message))
errorModalMessage += $"\n\n{ex.Message}";
#endif
}
else
{
Log.Error(ex, "Plugin installer threw an unexpected error");
#if DEBUG
if (!string.IsNullOrEmpty(ex.Message))
errorModalMessage += $"\n\n{ex.Message}";
if (!string.IsNullOrEmpty(ex.Message))
errorModalMessage += $"\n\n{ex.Message}";
#endif
}
}