Some branching/jumping
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package info.sigterm.deob.execution;
|
||||
|
||||
|
||||
public abstract class ObjectInstanceBase
|
||||
{
|
||||
private Path path;
|
||||
private ClassInstance type;
|
||||
|
||||
public ObjectInstanceBase(Path path, ClassInstance type)
|
||||
{
|
||||
this.path = path;
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public ClassInstance getType()
|
||||
{
|
||||
return type;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user