private void copy()

in src/main/java/org/apache/creadur/tentacles/IOSystem.java [73:80]


	private void copy(final InputStream from, final OutputStream to) throws IOException {
		final byte[] buffer = new byte[1024];
		int length = 0;
		while ((length = from.read(buffer)) != -1) {
			to.write(buffer, 0, length);
		}
		to.flush();
	}