summaryrefslogtreecommitdiff
path: root/ext/web/timers.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-10-09 02:08:10 +0200
committerGitHub <noreply@github.com>2023-10-09 02:08:10 +0200
commit2167a52d693e79c661f91d29164f59111f3bc3c9 (patch)
treeef8cef2fd0d3bc38a011c4d4d699e89d19016a77 /ext/web/timers.rs
parentdfc254cd57683f394f1b5fdca8c75200b2a9969d (diff)
refactor: remove TimersPermissions::check_unstable (#20831)
This is dead code that was not used in any way. Ref https://github.com/denoland/deno/pull/20797
Diffstat (limited to 'ext/web/timers.rs')
-rw-r--r--ext/web/timers.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/web/timers.rs b/ext/web/timers.rs
index 17b46c2be..67beee599 100644
--- a/ext/web/timers.rs
+++ b/ext/web/timers.rs
@@ -19,7 +19,6 @@ use std::time::Instant;
pub trait TimersPermission {
fn allow_hrtime(&mut self) -> bool;
- fn check_unstable(&self, state: &OpState, api_name: &'static str);
}
pub type StartTime = Instant;