fully generify OpSequence

This commit is contained in:
Jonathan Shook
2021-07-06 11:11:36 -05:00
parent 68c0ba277b
commit ed91ec7d41
18 changed files with 24 additions and 22 deletions

View File

@@ -32,7 +32,7 @@ public class JMXAction implements SyncAction {
@Override
public int runCycle(long cycle) {
LongFunction<JmxOp> readyJmxOp = sequencer.get(cycle);
LongFunction<JmxOp> readyJmxOp = sequencer.apply(cycle);
JmxOp jmxOp = readyJmxOp.apply(cycle);
jmxOp.execute();
return 0;