Map invokespecial on objects that are under java/io

This commit is contained in:
Adam
2016-03-27 19:38:15 -04:00
parent d58116b4ea
commit 8d022d216b
2 changed files with 1 additions and 4 deletions

View File

@@ -253,9 +253,6 @@ public class InvokeSpecial extends Instruction implements InvokeInstruction
if (thisMethods.size() != otherMethods.size())
return false;
assert thisMethods.size() == 1;
assert otherMethods.size() == 1;
for (int i = 0; i < thisMethods.size(); ++i)
{
net.runelite.asm.Method m1 = thisMethods.get(i);

View File

@@ -200,7 +200,7 @@ public class MappingExecutorUtil
return false;
}
if (className.startsWith("java/lang/reflect/"))
if (className.startsWith("java/lang/reflect/") || className.startsWith("java/io/"))
return true;
if (className.startsWith("java/") || className.startsWith("netscape/") || className.startsWith("javax/"))