Remove Timer::FireNow.

PiperOrigin-RevId: 811123106
This commit is contained in:
Francis Tsui
2025-09-24 18:44:41 -07:00
committed by Copybara-Service
parent eb3ae063f5
commit 72088b7fe2
15 changed files with 0 additions and 142 deletions
@@ -54,14 +54,6 @@ class Timer : public api::Timer {
return false;
}
bool FireNow() override {
if (is_stopped_) {
return false;
}
callback_();
return true;
}
private:
bool Schedule(absl::Duration delay) {
absl::MutexLock lock(&mutex_);