init of deob
This commit is contained in:
20
src/main/java/info/sigterm/deob/pool/Float.java
Normal file
20
src/main/java/info/sigterm/deob/pool/Float.java
Normal file
@@ -0,0 +1,20 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user