org.jobrunr.jobs.details.instructions.IConst5OperandInstruction Maven / Gradle / Ivy
package org.jobrunr.jobs.details.instructions;
import org.jobrunr.jobs.details.JobDetailsFinderContext;
public class IConst5OperandInstruction extends ZeroOperandInstruction {
public IConst5OperandInstruction(JobDetailsFinderContext jobDetailsBuilder) {
super(jobDetailsBuilder);
}
@Override
public Object invokeInstruction() {
return 5;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy