Appends the character c to the target stream. This method works the same way as #print(char). @param c the character to append to the target stream. @return this stream.
(char c)
| 725 | * @return this stream. |
| 726 | */ |
| 727 | public PrintStream append(char c) { |
| 728 | print(c); |
| 729 | return this; |
| 730 | } |
| 731 | |
| 732 | /** |
| 733 | * Appends the character sequence {@code csq} to the target stream. This |
nothing calls this directly
no test coverage detected