remove unused function

This commit is contained in:
Floris Bruynooghe
2025-07-02 15:12:44 +02:00
parent 04cec16807
commit 82ec2f328c
-4
View File
@@ -71,10 +71,6 @@ impl TimerTable {
self.timeout_queue.push(TimerEntry { time, timer });
}
pub(super) fn get(&self, timer: Timer) -> Option<Instant> {
self.most_recent_timeout.get(&timer).copied()
}
pub(super) fn stop(&mut self, timer: Timer) {
self.most_recent_timeout.remove(&timer);
}