(InputStream i, OutputStream o)
| 153 | /// |
| 154 | /// - `o`: destination |
| 155 | public static void copy(InputStream i, OutputStream o) throws IOException { |
| 156 | copy(i, o, 8192); |
| 157 | } |
| 158 | |
| 159 | /// Copy the input stream into the output stream, without closing the streams when done |
| 160 | /// |
no test coverage detected