Le 07/08/2013 16:41, sebb a écrit : > > -1 > > Surely that will cause API breakage?
I don't think so, this is source and binary compatible, unless someone extended the class and overrode the method, which is very unlikely. I wrote a simple test and compiled it with Commons Compress 1.5: CpioArchiveInputStream in = new CpioArchiveInputStream(new FileInputStream("src/test/resources/bla.cpio")); CpioArchiveEntry entry = (CpioArchiveEntry) in.getNextEntry(); System.out.println(entry.getName()); in.close(); I ran it with Commons Compress 1.6 on the classpath, it worked fine. Emmanuel Bourg --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org