| 11803 | |
| 11804 | |
| 11805 | void Master::offerTimeout(const OfferID& offerId) |
| 11806 | { |
| 11807 | Offer* offer = getOffer(offerId); |
| 11808 | if (offer != nullptr) { |
| 11809 | rescindOffer(offer); |
| 11810 | } |
| 11811 | } |
| 11812 | |
| 11813 | |
| 11814 | void Master::rescindOffer(Offer* offer, const Option<Filters>& filters) |
nothing calls this directly
no test coverage detected