Made invokable methods public

This commit is contained in:
Parnassian
2014-02-28 19:53:08 +01:00
parent baddc44c5d
commit 63e44e8d63
@@ -38,6 +38,8 @@ public class AddInvokerAdapter implements Opcodes, Injectable {
this.argsDesc + this.returnDesc, null, null);
boolean isStatic = (this.mn.access & ACC_STATIC) != 0;
mn.access = mn.access | ACC_PUBLIC;
if (!isStatic)
m.visitVarInsn(ALOAD, 0);