summaryrefslogtreecommitdiff
path: root/runtime/ops/fs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/ops/fs.rs')
-rw-r--r--runtime/ops/fs.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/ops/fs.rs b/runtime/ops/fs.rs
index f2ee9af9e..a7e515d7b 100644
--- a/runtime/ops/fs.rs
+++ b/runtime/ops/fs.rs
@@ -1955,8 +1955,6 @@ fn op_utime_sync(
mtime_secs: i64,
mtime_nanos: u32,
) -> Result<(), AnyError> {
- super::check_unstable(state, "Deno.utime");
-
let path = PathBuf::from(&path);
let atime = filetime::FileTime::from_unix_time(atime_secs, atime_nanos);
let mtime = filetime::FileTime::from_unix_time(mtime_secs, mtime_nanos);
@@ -1980,8 +1978,6 @@ async fn op_utime_async(
mtime_secs: i64,
mtime_nanos: u32,
) -> Result<(), AnyError> {
- super::check_unstable(&state.borrow(), "Deno.utime");
-
let path = PathBuf::from(&path);
let atime = filetime::FileTime::from_unix_time(atime_secs, atime_nanos);
let mtime = filetime::FileTime::from_unix_time(mtime_secs, mtime_nanos);