summaryrefslogtreecommitdiff
path: root/ext/fs/ops.rs
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-09-12 22:27:16 +1000
committerGitHub <noreply@github.com>2024-09-12 12:27:16 +0000
commit9e8f84214f88ae725f9a028f615b19546b9d789f (patch)
tree5a1ef949e6fd541ecc5bcf16e3bc61fbd5b6b6e7 /ext/fs/ops.rs
parentb0265eaf8f1d42ec983c2fef0d78435239442ddc (diff)
refactor: cleanup unstable checks for WebGPU, FFI and FS APIs (#25586)
Continuation of work in #25488. --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
Diffstat (limited to 'ext/fs/ops.rs')
-rw-r--r--ext/fs/ops.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/fs/ops.rs b/ext/fs/ops.rs
index 8af2f0045..f25cd944d 100644
--- a/ext/fs/ops.rs
+++ b/ext/fs/ops.rs
@@ -26,7 +26,6 @@ use rand::thread_rng;
use rand::Rng;
use serde::Serialize;
-use crate::check_unstable;
use crate::interface::AccessCheckFn;
use crate::interface::FileSystemRc;
use crate::interface::FsDirEntry;
@@ -121,7 +120,6 @@ pub fn op_fs_umask(
) -> Result<u32, AnyError>
where
{
- check_unstable(state, "Deno.umask");
state.borrow::<FileSystemRc>().umask(mask).context("umask")
}