diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-03-27 22:53:08 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-03-27 22:53:08 -0600 |
commit | b01fe1e8e5541d6c11f905d7fbb949d747f29230 (patch) | |
tree | d348b6b471fa2ebb2cece61daaf672c8b27b4299 /misc/PrintFilter.java | |
parent | 8131ddc22af5d39114a55349d71bcdc467599187 (diff) |
SymbolTable to separate library, Class/Method Instances
Diffstat (limited to 'misc/PrintFilter.java')
-rw-r--r-- | misc/PrintFilter.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/misc/PrintFilter.java b/misc/PrintFilter.java new file mode 100644 index 0000000..971ef04 --- /dev/null +++ b/misc/PrintFilter.java @@ -0,0 +1,15 @@ +package misc; + + +public class PrintFilter { + + public static void print(String message, boolean newline) { + boolean debug = true; + if (debug) { + System.out.print(message); + if (newline) + System.out.println(); + } + } + +} |