(String prefix, String text)
| 87 | } |
| 88 | |
| 89 | private static String wrap(String prefix, String text) { |
| 90 | if (!ENABLED || text == null || text.isEmpty()) { |
| 91 | return text; |
| 92 | } |
| 93 | return prefix + text + RESET; |
| 94 | } |
| 95 | |
| 96 | private static int displayWidth(String text) { |
| 97 | int width = 0; |
no test coverage detected