(Object output)
| 3 | //simple class to simulate a StringBuilder but simply output to the console |
| 4 | public class DebugTrace { |
| 5 | public DebugTrace append(Object output) { |
| 6 | //System.out.print(output); //Uncomment to show trace output |
| 7 | return this; |
| 8 | } |
| 9 | } |
no outgoing calls