We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb66608 commit cdff079Copy full SHA for cdff079
1 file changed
src/main/java/loci/common/BZip2Handle.java
@@ -105,7 +105,7 @@ public static boolean isBZip2File(String file) throws IOException {
105
protected void resetStream() throws IOException {
106
BufferedInputStream bis = new BufferedInputStream(
107
new FileInputStream(file), RandomAccessInputStream.MAX_OVERHEAD);
108
- int skipped = 0;
+ long skipped = 0;
109
while (skipped < 2) {
110
skipped += bis.skip(2 - skipped);
111
}
0 commit comments