From 27ad98492fbd6eb64a540c482f5179680b7e018b Mon Sep 17 00:00:00 2001 From: JustArchi Date: Wed, 4 Nov 2015 05:01:18 +0100 Subject: [PATCH] Misc --- ArchiSteamFarm/Debugging.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ArchiSteamFarm/Debugging.cs b/ArchiSteamFarm/Debugging.cs index d4ef2b213..4a34def7f 100644 --- a/ArchiSteamFarm/Debugging.cs +++ b/ArchiSteamFarm/Debugging.cs @@ -27,7 +27,7 @@ using System.Diagnostics; namespace ArchiSteamFarm { internal static class Debugging { internal static bool IsDebugBuild { get; private set; } = false; - internal static bool IsReleaseBuild { get; private set; } = !IsDebugBuild; + internal static bool IsReleaseBuild { get { return !IsDebugBuild; } } static Debugging() { MarkIfDebug(); @@ -36,7 +36,6 @@ namespace ArchiSteamFarm { [Conditional("DEBUG")] private static void MarkIfDebug() { IsDebugBuild = true; - IsReleaseBuild = !IsDebugBuild; } } }