(InputStream is, OutputStream os)
| 141 | INSTANCE; |
| 142 | |
| 143 | public void copy(InputStream is, OutputStream os) throws IOException { |
| 144 | copy(is, os, AutoClose.NONE); |
| 145 | } |
| 146 | |
| 147 | public void copy(InputStream is, OutputStream os, AutoClose stream) throws IOException { |
| 148 | byte[] content = new byte[4096]; |