21 lines
375 B
Java
21 lines
375 B
Java
package info.sigterm.deob.pool;
|
|
|
|
import info.sigterm.deob.ConstantPool;
|
|
|
|
import java.io.DataInputStream;
|
|
import java.io.IOException;
|
|
|
|
public class Float extends PoolEntry
|
|
{
|
|
private float value;
|
|
|
|
public Float(ConstantPool pool) throws IOException
|
|
{
|
|
super(pool, ConstantType.FLOAT);
|
|
|
|
DataInputStream is = pool.getClassFile().getStream();
|
|
|
|
value = is.readFloat();
|
|
}
|
|
}
|