| 4566 | hashmap<UUID, Operation> operationsToCheckpoint; |
| 4567 | |
| 4568 | foreachpair (const UUID& uuid, Operation* operation, operations) { |
| 4569 | if (operationNeedsCheckpointing(*operation)) { |
| 4570 | operationsToCheckpoint.put(uuid, *operation); |
| 4571 | } |
| 4572 | } |
| 4573 | |
| 4574 | if (resourcesToCheckpoint == checkpointedResources && |
| 4575 | operationsToCheckpoint == checkpointedOperations) { |
nothing calls this directly
no test coverage detected