Remove unused parameters

This commit is contained in:
Adam
2015-06-13 11:01:46 -04:00
parent eb986ba708
commit a677e64aac
106 changed files with 1229 additions and 228 deletions

View File

@@ -11,6 +11,14 @@ public class InterfaceMethod extends PoolEntry
private int classIndex, natIndex;
private Class clazz;
private NameAndType nat;
public InterfaceMethod(ConstantPool pool, Class clazz, NameAndType nat)
{
super(pool, ConstantType.INTERFACE_METHOD_REF);
this.clazz = clazz;
this.nat = nat;
}
public InterfaceMethod(ConstantPool pool) throws IOException
{