(String message, Object text)
| 134 | } |
| 135 | |
| 136 | static public void blue(String message, Object text) { |
| 137 | printlnDecorated("\033[34m", message, text, "\033[0m"); |
| 138 | } |
| 139 | |
| 140 | static public void green(String message, Object text) { |
| 141 | printlnDecorated("\033[33m", message, text, "\033[0m"); |
nothing calls this directly
no test coverage detected