summaryrefslogtreecommitdiff
path: root/misc/PrintFilter.java
blob: e3be310e31de84fcc9ee67d65932e321345d8389 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package misc;


public class PrintFilter {

    public static void print(String message, boolean newline) {
        boolean debug = false;
        if (debug) {
            System.out.print(message);
            if (newline)
                System.out.println();
        }
    }

}