assert zipEntry != null;
logger.trace("found next component in JAR file");
return true;
} catch (IOException ex) {
logger.error("Cannot get next component from JAR file", ex);
throw new UnableToReadCapFileException("Cannot get next component from JAR file", ex);
}
} else {
logger.trace("Read {} bytes in CAP file, file size is {}", totalByteRead, capSize);
assert totalByteRead <= capSize;
if (totalByteRead == capSize) {