ZipPackage.saveImpl does not re-throw the exception.
Status: Beta
Brought to you by:
neodante
ZipPackage.saveImpl need to re-throw an exception and not just log it:
} catch (Exception e) {
logger
.error(\"Fail to save: an error occurs while saving the package : \"
+ e.getMessage());
}
to give a caller any indication that something went wrong saving the modified packages. Otherwise the corrupted files are considered by the caller to be successfully modified with no indication that the file is corrupted.