mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-02 22:41:56 +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();
|
ZipEntry e = input.getNextEntry();
|
||||||
while (e != null) {
|
while (e != null) {
|
||||||
String filename = e.getName();
|
String filename = e.getName();
|
||||||
output.putNextEntry(e);
|
output.putNextEntry(IOHelper.newZipEntry(e.getName()));
|
||||||
if (filename.endsWith(".class")) {
|
if (filename.endsWith(".class")) {
|
||||||
CharSequence classname = filename.replace('/', '.').subSequence(0,
|
CharSequence classname = filename.replace('/', '.').subSequence(0,
|
||||||
filename.length() - ".class".length());
|
filename.length() - ".class".length());
|
||||||
|
@ -224,7 +224,7 @@ private void stdBuild() throws IOException {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
output.putNextEntry(e);
|
output.putNextEntry(IOHelper.newZipEntry(e.getName()));
|
||||||
} catch (ZipException ex) {
|
} catch (ZipException ex) {
|
||||||
LogHelper.error(ex);
|
LogHelper.error(ex);
|
||||||
e = input.getNextEntry();
|
e = input.getNextEntry();
|
||||||
|
|
Loading…
Reference in a new issue