()
| 181 | } |
| 182 | |
| 183 | @Override |
| 184 | public void flush() { |
| 185 | if (byteStream.size() > 0) { |
| 186 | String msg = byteStream.toString(); |
| 187 | if (msg.endsWith(endOfLineSystem) || msg.endsWith(endOfLineShort)) |
| 188 | ejectBuffer(); |
| 189 | } |
| 190 | super.flush(); |
| 191 | } |
| 192 | |
| 193 | @Override |
| 194 | public void close() { |
nothing calls this directly
no test coverage detected