diff options
Diffstat (limited to 'ext/ffi/callback.rs')
-rw-r--r-- | ext/ffi/callback.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/ffi/callback.rs b/ext/ffi/callback.rs index 281208322..7d0114131 100644 --- a/ext/ffi/callback.rs +++ b/ext/ffi/callback.rs @@ -1,6 +1,5 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -use crate::check_unstable; use crate::symbol::NativeType; use crate::FfiPermissions; use crate::ForeignFunction; @@ -557,7 +556,6 @@ pub fn op_ffi_unsafe_callback_create<FP, 'scope>( where FP: FfiPermissions + 'static, { - check_unstable(state, "Deno.UnsafeCallback"); let permissions = state.borrow_mut::<FP>(); permissions.check_partial(None)?; |