Commit DebugTrace.java

This commit is contained in:
drdev
2016-01-03 01:11:20 +00:00
parent 0f246f16f8
commit aaf55a3c76
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package forge.util;
//simple class to simulate a StringBuilder but simply output to the console
public class DebugTrace {
public DebugTrace append(Object output) {
//System.out.print(output); //Uncomment to show trace output
return this;
}
}