summaryrefslogtreecommitdiff
path: root/ext/fs/ops.rs
diff options
context:
space:
mode:
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")
}