make JarStreamModule inherit the assumptions of JarInputStream's constructor

This commit is contained in:
Martin Mohr 2016-11-07 14:30:38 +01:00 committed by Martin Hecker
parent c00d9ec7af
commit dff20ac49c
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ public class JarStreamModule extends JarInputStream implements Module {
*/
private HashMap<String, byte[]> cache = null;
public JarStreamModule(JarInputStream stream) throws IOException {
public JarStreamModule(InputStream stream) throws IOException {
super(stream);
}