xbean-bundleutils/src/main/java/org/apache/xbean/osgi/bundle/util/jar/BundleJarFile.java [162:192]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
         public int read() {
             return -1;
         }

         public int read(byte b[]) {
             return -1;
         }

         public int read(byte b[], int off, int len) {
             return -1;
         }

         public long skip(long n) {
             return 0;
         }

         public int available() {
             return 0;
         }

         public void close() {
         }

         public synchronized void mark(int readlimit) {
         }

         public synchronized void reset() {
         }

         public boolean markSupported() {
             return false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



xbean-classloader/src/main/java/org/apache/xbean/classloader/IoUtil.java [112:142]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public int read() {
            return -1;
        }

        public int read(byte b[])  {
            return -1;
        }

        public int read(byte b[], int off, int len) {
            return -1;
        }

        public long skip(long n) {
            return 0;
        }

        public int available() {
            return 0;
        }

        public void close() {
        }

        public synchronized void mark(int readlimit) {
        }

        public synchronized void reset() {
        }

        public boolean markSupported() {
            return false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



