mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-01-25 00:29:23 +03:00
[FIX] Duplicate META-INF
This commit is contained in:
parent
dda863db9d
commit
f8fbe8e425
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ public void pushJarFile(ZipInputStream input) throws IOException {
|
||||||
public void pushJarFile(ZipInputStream input, Set<String> blacklist) throws IOException {
|
public void pushJarFile(ZipInputStream input, Set<String> blacklist) throws IOException {
|
||||||
ZipEntry e = input.getNextEntry();
|
ZipEntry e = input.getNextEntry();
|
||||||
while (e != null) {
|
while (e != null) {
|
||||||
if (blacklist.contains(e.getName())) {
|
if (fileList.contains(e.getName()) || blacklist.contains(e.getName())) {
|
||||||
e = input.getNextEntry();
|
e = input.getNextEntry();
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue