thrau / jarchivelib

A simple archiving and compression library for Java
https://github.com/thrau/jarchivelib
Apache License 2.0
198 stars 36 forks source link

added assertions into getSize in CommonsArchiveEntry.java #96

Closed mohammadJaliliTorkamani closed 6 months ago

mohammadJaliliTorkamani commented 12 months ago

added two assertions for the "entry" variable to check their nullability and emptiness as follows:

assert entry != null : "Entry cannot be null"; assert entry.getSize() >= 0 : "Entry size cannot be negative";