diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-04-19 17:30:41 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-04-19 17:30:41 -0600 |
commit | 2f59e052e5272bb2833c91c84b89486bd1b5f592 (patch) | |
tree | 9c2eb9d96e7b6b00ac64eccd6f6b8c3eaa0a8419 /misc | |
parent | 837dbf613bb571bac5c9e48ffe5865425e6b9fee (diff) |
Create 'Kettle' class
Diffstat (limited to 'misc')
-rw-r--r-- | misc/PrintFilter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/PrintFilter.java b/misc/PrintFilter.java index e3be310..971ef04 100644 --- a/misc/PrintFilter.java +++ b/misc/PrintFilter.java @@ -4,7 +4,7 @@ package misc; public class PrintFilter { public static void print(String message, boolean newline) { - boolean debug = false; + boolean debug = true; if (debug) { System.out.print(message); if (newline) |