mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-14 03:29:23 +01:00
fix: removed useless implementation of Opcodes
This commit is contained in:
parent
af259809ca
commit
f2145f8ab7
1 changed files with 1 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
|||
package ftbsc.lll.tools;
|
||||
|
||||
import ftbsc.lll.exception.InstructionMismatchException;
|
||||
import org.objectweb.asm.Opcodes;
|
||||
import org.objectweb.asm.tree.AbstractInsnNode;
|
||||
import org.objectweb.asm.tree.InsnList;
|
||||
|
||||
|
@ -11,7 +10,7 @@ import java.util.Objects;
|
|||
* Represents a sequence of instructions contained within two given nodes.
|
||||
* Extends InsnList, but provides additional flexibility.
|
||||
*/
|
||||
public class InsnSequence extends InsnList implements Opcodes {
|
||||
public class InsnSequence extends InsnList {
|
||||
/**
|
||||
* Public constructor.
|
||||
* Must be given two non-null, connected nodes.
|
||||
|
|
Loading…
Reference in a new issue