View by Classes

Findings - Overview

warning Creates an empty jar file entry (Findbugs)

Empty jar file entry created in org.jcoderz.commons.util.JarUtils.addFileToJar(File, File, JarOutputStream)

Further info on the wiki.

The code calls putNextEntry(), immediately followed by a call to closeEntry(). This results in an empty JarFile entry. The contents of the entry should be written to the JarFile between the calls to putNextEntry() and closeEntry().

1org.jcoderz.commons.util.JarUtils
 [167]