Remove pool entry pool reference

This commit is contained in:
Adam
2015-07-07 12:49:37 -04:00
parent be127c55cb
commit c92387e089
18 changed files with 78 additions and 94 deletions

View File

@@ -13,16 +13,16 @@ public class Integer extends PoolEntry
public Integer(ConstantPool pool) throws IOException
{
super(pool, ConstantType.INTEGER);
super(ConstantType.INTEGER);
DataInputStream is = pool.getClassFile().getStream();
value = is.readInt();
}
public Integer(ConstantPool pool, int i)
public Integer(int i)
{
super(pool, ConstantType.INTEGER);
super(ConstantType.INTEGER);
value = i;
}