Index: D:/user/jimmy/WorkSpace_Ongoing/Harmony Archive/src/main/java/java/util/zip/InflaterInputStream.java =================================================================== --- D:/user/jimmy/WorkSpace_Ongoing/Harmony Archive/src/main/java/java/util/zip/InflaterInputStream.java (revision 382332) +++ D:/user/jimmy/WorkSpace_Ongoing/Harmony Archive/src/main/java/java/util/zip/InflaterInputStream.java (working copy) @@ -227,5 +227,30 @@ super.close(); } } + + /** + * Do nothing at all. + * @param readlimit + * of no use + */ + public void mark(int readlimit){ + // do nothing + } + /** + * throw IOE when calls + * @throws IOException if the method is called + */ + public void reset() throws IOException{ + throw new IOException(); + } + + /** + * indicate this class does not support mark + * @return false at any time + */ + public boolean markSupported(){ + return false; + } + }