From 3d8b4105717cf74713ff0964f8eb5804488ab2d5 Mon Sep 17 00:00:00 2001 From: Aireil <33433913+Aireil@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:03:37 +0200 Subject: [PATCH] chore: avoid unused directive (#965) --- Dalamud/Game/Internal/AntiDebug.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dalamud/Game/Internal/AntiDebug.cs b/Dalamud/Game/Internal/AntiDebug.cs index 99797f4df..3b84b6cce 100644 --- a/Dalamud/Game/Internal/AntiDebug.cs +++ b/Dalamud/Game/Internal/AntiDebug.cs @@ -1,6 +1,9 @@ using System; using System.Collections.Generic; + +#if !DEBUG using Dalamud.Configuration.Internal; +#endif using Serilog; namespace Dalamud.Game.Internal