@Override @SuppressWarnings("deprecation") protected synchronized InputStream getInputStream( String name, Boolean check, boolean process) throws IOException { final InputStream in = super.getInputStream(name, check, process); return in == null ? null : new de.schlichtherle.truezip.io.SynchronizedInputStream(in, this); }
@Override @SuppressWarnings("deprecation") public synchronized InputStream getPreambleInputStream() throws IOException { return new de.schlichtherle.truezip.io.SynchronizedInputStream(super.getPreambleInputStream(), this); }
@Override @SuppressWarnings("deprecation") public synchronized InputStream getPostambleInputStream() throws IOException { return new de.schlichtherle.truezip.io.SynchronizedInputStream(super.getPostambleInputStream(), this); }