I don't know why this is failing
This commit is contained in:
@@ -66,6 +66,12 @@ public class ClassFile
|
||||
methods = new Methods(this);
|
||||
attributes = new Attributes(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "ClassFile{" + "name=" + name + '}';
|
||||
}
|
||||
|
||||
public void write(DataOutputStream out) throws IOException
|
||||
{
|
||||
|
||||
@@ -173,7 +173,13 @@ public class InvokeVirtual extends Instruction implements InvokeInstruction
|
||||
assert myMethods.size() == otherMethods.size();
|
||||
|
||||
for (int i = 0; i < myMethods.size(); ++i)
|
||||
mapping.map(myMethods.get(i), otherMethods.get(i));
|
||||
{
|
||||
net.runelite.deob.Method m1 = myMethods.get(i), m2 = otherMethods.get(i);
|
||||
|
||||
assert m1.getMethods().getClassFile().getName().equals(m2.getMethods().getClassFile().getName());
|
||||
|
||||
mapping.map(m1, m2);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user