mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-04 15:31:53 +03:00
AsmFix P1
This commit is contained in:
parent
8d34ae76fc
commit
0e0046f813
1 changed files with 6 additions and 3 deletions
|
@ -23,7 +23,7 @@ private class CheckSuperClassVisitor extends ClassVisitor {
|
||||||
String superClassName;
|
String superClassName;
|
||||||
|
|
||||||
public CheckSuperClassVisitor() {
|
public CheckSuperClassVisitor() {
|
||||||
super(Opcodes.ASM5);
|
super(Opcodes.ASM7);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -57,10 +57,13 @@ public void acceptVisitor(String className, ClassVisitor visitor) throws IOExcep
|
||||||
|
|
||||||
public byte[] getClassData(String className) throws IOException {
|
public byte[] getClassData(String className) throws IOException {
|
||||||
for (JarFile f : cp) {
|
for (JarFile f : cp) {
|
||||||
if (f.getEntry(className + ".class") != null)
|
if (f.getEntry(className + ".class") != null) {
|
||||||
|
byte[] bytes = null;
|
||||||
try (InputStream in = f.getInputStream(f.getEntry(className + ".class"))) {
|
try (InputStream in = f.getInputStream(f.getEntry(className + ".class"))) {
|
||||||
return IOHelper.read(in);
|
bytes = IOHelper.read(in);
|
||||||
}
|
}
|
||||||
|
return bytes;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return IOHelper.read(IOHelper.getResourceURL(className + ".class"));
|
return IOHelper.read(IOHelper.getResourceURL(className + ".class"));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue