(OutputStream output)
| 191 | |
| 192 | |
| 193 | static private void cleanup(OutputStream output) { |
| 194 | try { |
| 195 | if (output != null) { |
| 196 | output.flush(); |
| 197 | output.close(); |
| 198 | } |
| 199 | } catch (IOException e) { |
| 200 | e.printStackTrace(); |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | |
| 205 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |
no test coverage detected