Appends a char to the printer's buffer
(char c)
| 49 | |
| 50 | /** Appends a char to the printer's buffer */ |
| 51 | @CanIgnoreReturnValue |
| 52 | public final Printer append(char c) { |
| 53 | buffer.append(c); |
| 54 | return this; |
| 55 | } |
| 56 | |
| 57 | /** Appends a char sequence to the printer's buffer */ |
| 58 | @CanIgnoreReturnValue |
no outgoing calls