| 947 | } |
| 948 | |
| 949 | bool Units::unassignTrainer(df::unit *unit) { |
| 950 | CHECK_NULL_POINTER(unit); |
| 951 | return erase_from_vector(plotinfo->training.training_assignments, |
| 952 | &df::training_assignment::animal_id, unit->id); |
| 953 | } |
| 954 | |
| 955 | void Units::makeown(df::unit *unit) { |
| 956 | CHECK_NULL_POINTER(unit); |
nothing calls this directly
no test coverage detected