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 Long extends PoolEntry
public Long(ConstantPool pool) throws IOException
{
super(pool, ConstantType.LONG);
super(ConstantType.LONG);
DataInputStream is = pool.getClassFile().getStream();
value = is.readLong();
}
public Long(ConstantPool pool, long l)
public Long(long l)
{
super(pool, ConstantType.LONG);
super(ConstantType.LONG);
value = l;
}