From f7477ba2c639a00f8a7d99c961964f35b04ca8f4 Mon Sep 17 00:00:00 2001 From: Roman Chernyatchik Date: Fri, 20 Mar 2009 16:11:34 +0300 Subject: [PATCH] Compilation fixed --- util/src/com/intellij/util/io/zip/JBZipEntry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/src/com/intellij/util/io/zip/JBZipEntry.java b/util/src/com/intellij/util/io/zip/JBZipEntry.java index 00bbd5385b..2ae8968d77 100644 --- a/util/src/com/intellij/util/io/zip/JBZipEntry.java +++ b/util/src/com/intellij/util/io/zip/JBZipEntry.java @@ -360,7 +360,7 @@ public class JBZipEntry implements Cloneable { myFile.eraseEntry(this); } - private InputStream getInputStream() throws IOException { + protected InputStream getInputStream() throws IOException { long start = calcDataOffset(); BoundedInputStream bis = new BoundedInputStream(start, getCompressedSize()); -- 2.11.4.GIT