(String message, Object text)
| 130 | } |
| 131 | |
| 132 | static public void red(String message, Object text) { |
| 133 | printlnDecorated("\033[31m", message, text, "\033[0m"); |
| 134 | } |
| 135 | |
| 136 | static public void blue(String message, Object text) { |
| 137 | printlnDecorated("\033[34m", message, text, "\033[0m"); |
nothing calls this directly
no test coverage detected