fix: removed useless implementation of Opcodes

This commit is contained in:
zaaarf 2023-02-07 15:09:18 +01:00
parent af259809ca
commit f2145f8ab7
No known key found for this signature in database
GPG key ID: 82240E075E31FA4C

View file

@ -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.