new execute stuff

This commit is contained in:
Adam
2015-05-31 16:03:37 -04:00
parent 1e34e0ec66
commit 0fcbcd262c
205 changed files with 2977 additions and 1451 deletions

View File

@@ -1,6 +1,7 @@
package info.sigterm.deob.pool;
import info.sigterm.deob.ConstantPool;
import info.sigterm.deob.execution.Type;
import java.io.DataInputStream;
import java.io.DataOutputStream;
@@ -43,9 +44,9 @@ public class Long extends PoolEntry
}
@Override
public Object getObject()
public Type getTypeClass()
{
return value;
return new Type(long.class.getCanonicalName());
}
@Override