mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Commit DebugTrace.java
This commit is contained in:
9
forge-core/src/main/java/forge/util/DebugTrace.java
Normal file
9
forge-core/src/main/java/forge/util/DebugTrace.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user