mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-01 22:14:01 +03:00
Выловил заразу всё таки...
This commit is contained in:
parent
b06581e077
commit
0fe5c57468
1 changed files with 2 additions and 2 deletions
|
@ -160,7 +160,7 @@ public void build() throws IOException {
|
|||
ZipEntry e = input.getNextEntry();
|
||||
while (e != null) {
|
||||
String filename = e.getName();
|
||||
output.putNextEntry(e);
|
||||
output.putNextEntry(IOHelper.newZipEntry(e.getName()));
|
||||
if (filename.endsWith(".class")) {
|
||||
CharSequence classname = filename.replace('/', '.').subSequence(0,
|
||||
filename.length() - ".class".length());
|
||||
|
@ -224,7 +224,7 @@ private void stdBuild() throws IOException {
|
|||
continue;
|
||||
}
|
||||
try {
|
||||
output.putNextEntry(e);
|
||||
output.putNextEntry(IOHelper.newZipEntry(e.getName()));
|
||||
} catch (ZipException ex) {
|
||||
LogHelper.error(ex);
|
||||
e = input.getNextEntry();
|
||||
|
|
Loading…
Reference in a new issue