private void consumeAndClose()

in src/main/java/org/apache/sling/testing/teleporter/client/TeleporterHttpClient.java [332:341]


    private void consumeAndClose(InputStream is) throws IOException {
        if(is == null) {
            return;
        }
        final byte [] buffer = new byte[16384];
        while(is.read(buffer) != -1) {
            // nothing to do, just consume the stream
        }
        is.close();
    }