[FIX] Duplicate META-INF

This commit is contained in:
Gravit 2019-09-30 14:01:41 +07:00
parent dda863db9d
commit f8fbe8e425
No known key found for this signature in database
GPG key ID: 061981E1E85D3216

View file

@ -49,7 +49,7 @@ public void pushJarFile(ZipInputStream input) throws IOException {
public void pushJarFile(ZipInputStream input, Set<String> blacklist) throws IOException {
ZipEntry e = input.getNextEntry();
while (e != null) {
if (blacklist.contains(e.getName())) {
if (fileList.contains(e.getName()) || blacklist.contains(e.getName())) {
e = input.getNextEntry();
continue;
}