Class writing, call graph, eclipse project
This commit is contained in:
@@ -3,6 +3,7 @@ package info.sigterm.deob.pool;
|
||||
import info.sigterm.deob.ConstantPool;
|
||||
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
import java.io.IOException;
|
||||
|
||||
public class String extends PoolEntry
|
||||
@@ -23,4 +24,10 @@ public class String extends PoolEntry
|
||||
{
|
||||
return this.getPool().getEntry(stringIndex).getObject();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void write(DataOutputStream out) throws IOException
|
||||
{
|
||||
out.writeShort(stringIndex);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user