| 1671 | } |
| 1672 | |
| 1673 | static void odb_transaction_files_commit(struct odb_transaction *base) |
| 1674 | { |
| 1675 | struct odb_transaction_files *transaction = |
| 1676 | container_of(base, struct odb_transaction_files, base); |
| 1677 | |
| 1678 | flush_loose_object_transaction(transaction); |
| 1679 | flush_packfile_transaction(transaction); |
| 1680 | } |
| 1681 | |
| 1682 | struct odb_transaction *odb_transaction_files_begin(struct odb_source *source) |
| 1683 | { |
nothing calls this directly
no test coverage detected