remove native filenames from manifest, add it in code instead

what was I thinking
This commit is contained in:
yugecin
2018-10-02 20:33:06 +02:00
parent dd2ac9c1f2
commit ccf17a849e
4 changed files with 12 additions and 29 deletions

View File

@@ -92,7 +92,7 @@ public class InstanceContainer {
config = new Configuration(manifest);
if (jarfile != null) {
try {
NativeLoader.loadNatives(jarfile, manifest);
NativeLoader.loadNatives(jarfile);
} catch (IOException e) {
String msg = String.format("Could not unpack native(s): %s", e.getMessage());
throw new RuntimeException(msg, e);