inputStream = ((InputStreamWrapper) inputStream).getWrappedInputStream();
}
if (this.repeatableInputStream == null) {
log.debug("Wrapping non-repeatable input stream in a RepeatableInputStream");
this.is = new RepeatableInputStream(is);
this.repeatableInputStream = (IRepeatableInputStream) this.is;
}
MAX_BYTES_PER_SECOND = 1024 * Jets3tProperties.getInstance(Constants.JETS3T_PROPERTIES_FILENAME)
.getLongProperty("httpclient.read-throttle", 0);