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