Rename unique fields

This commit is contained in:
Adam
2015-07-10 11:29:46 -04:00
parent 5781f08152
commit df11cdaded
9 changed files with 117 additions and 7 deletions

View File

@@ -36,6 +36,14 @@ public class NameAndType extends PoolEntry
this.signature = sig;
}
public NameAndType(java.lang.String name, Type type)
{
super(ConstantType.NAME_AND_TYPE);
this.name = name;
this.type = type;
}
@Override
public void resolve(ConstantPool pool)
{