Hi, below in the modifier onlyWhileVacant, what does _; in the 2nd line do? contract HotelRoom { enum Statuses { Vacant, Occupied }; Statuses currentStatus; ad...