Takes all whitespace off the end of its argument.
(final StringBuilder sb)
| 427 | * Takes all whitespace off the end of its argument. |
| 428 | */ |
| 429 | static private void trimRight(final StringBuilder sb) { |
| 430 | while (sb.length() >= 1 && Character.isWhitespace(sb.charAt(sb.length() - 1))) { |
| 431 | sb.setLength(sb.length() - 1); |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | |
| 436 | /** Entry point */ |
no outgoing calls
no test coverage detected