From 0fe5c57468988e9b007af3c5e44616df74d2b972 Mon Sep 17 00:00:00 2001 From: zaxar163 Date: Mon, 3 Dec 2018 16:43:22 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D1=8B=D0=BB=D0=BE=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=B7=D0=B0=D1=80=D0=B0=D0=B7=D1=83=20=D0=B2=D1=81=D1=91=20?= =?UTF-8?q?=D1=82=D0=B0=D0=BA=D0=B8...?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/ru/gravit/launchserver/binary/JARLauncherBinary.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LaunchServer/src/main/java/ru/gravit/launchserver/binary/JARLauncherBinary.java b/LaunchServer/src/main/java/ru/gravit/launchserver/binary/JARLauncherBinary.java index 650a2fee..bc9caf3a 100644 --- a/LaunchServer/src/main/java/ru/gravit/launchserver/binary/JARLauncherBinary.java +++ b/LaunchServer/src/main/java/ru/gravit/launchserver/binary/JARLauncherBinary.java @@ -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();