summaryrefslogtreecommitdiff
path: root/runtime/build.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 /runtime/build.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 'runtime/build.rs')
-rw-r--r--runtime/build.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/runtime/build.rs b/runtime/build.rs
index 6684afe09..dec687b6e 100644
--- a/runtime/build.rs
+++ b/runtime/build.rs
@@ -55,14 +55,6 @@ mod startup_snapshot {
fn allow_hrtime(&mut self) -> bool {
unreachable!("snapshotting!")
}
-
- fn check_unstable(
- &self,
- _state: &deno_core::OpState,
- _api_name: &'static str,
- ) {
- unreachable!("snapshotting!")
- }
}
impl deno_ffi::FfiPermissions for Permissions {