(OutputStream output)
| 183 | |
| 184 | |
| 185 | static private void cleanup(OutputStream output) { |
| 186 | try { |
| 187 | if (output != null) { |
| 188 | output.flush(); |
| 189 | output.close(); |
| 190 | } |
| 191 | } catch (IOException e) { |
| 192 | e.printStackTrace(); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | |
| 197 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |
no test coverage detected