project: Injector add CheckCast support for copy classes
This commit is contained in:
@@ -47,6 +47,13 @@ public class CheckCast extends Instruction implements TypeInstruction
|
||||
super(instructions, InstructionType.CHECKCAST);
|
||||
}
|
||||
|
||||
public CheckCast(Instructions instructions, Type type)
|
||||
{
|
||||
super(instructions, InstructionType.CHECKCAST);
|
||||
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public CheckCast(Instructions instructions, InstructionType type)
|
||||
{
|
||||
super(instructions, type);
|
||||
|
||||
Reference in New Issue
Block a user