package de.geolykt.starloader.deobf.stack.source; import org.objectweb.asm.tree.AbstractInsnNode; public abstract class AbstractConstantSource extends AbstractInsnSource { private final C constant; public AbstractConstantSource(T insn, C constant) { super(insn); this.constant = constant; } public final C getConstant() { return this.constant; } }