summaryrefslogtreecommitdiff
path: root/typecheck/library/Utilities.java
blob: fad1e7e156eeac30b70a85649a33ce4b877b03f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package typecheck.library;

public class Utilities {

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

}