From 88b9e048efa9456ec4bb0068fda2011a9f83f7e1 Mon Sep 17 00:00:00 2001 From: Suganthi Thomas Date: Wed, 17 Sep 2025 22:12:07 -0500 Subject: [PATCH] Removed commented lines --- app/src/processing/app/Base.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index a2eea72fb..2551a54d6 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -65,7 +65,7 @@ public class Base { * if an empty file named 'debug' is found in the settings folder. * See implementation in createAndShowGUI(). */ - //static public boolean DEBUG = System.getenv().containsKey("DEBUG"); + static public boolean DEBUG = Boolean.parseBoolean(System.getenv().getOrDefault("DEBUG", "false"));