summaryrefslogtreecommitdiff
path: root/runtime/ops/fs.rs
diff options
context:
space:
mode:
authorColin Ihrig <cjihrig@gmail.com>2022-10-25 14:03:05 -0400
committerGitHub <noreply@github.com>2022-10-25 14:03:05 -0400
commitffff814540394a6a958897b38f4944954773cf74 (patch)
tree7797f0d55fc7d7db7295932ee7a2a252e546099e /runtime/ops/fs.rs
parent3f22f912ec4996fecb05ba6d5baa1a02bdffe78e (diff)
feat: stabilize Deno.futime() and Deno.futimeSync() (#16415)
Diffstat (limited to 'runtime/ops/fs.rs')
-rw-r--r--runtime/ops/fs.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/ops/fs.rs b/runtime/ops/fs.rs
index 9b0737fe9..f2ee9af9e 100644
--- a/runtime/ops/fs.rs
+++ b/runtime/ops/fs.rs
@@ -1916,7 +1916,6 @@ fn op_futime_sync(
mtime_secs: i64,
mtime_nanos: u32,
) -> Result<(), AnyError> {
- super::check_unstable(state, "Deno.futimeSync");
let atime = filetime::FileTime::from_unix_time(atime_secs, atime_nanos);
let mtime = filetime::FileTime::from_unix_time(mtime_secs, mtime_nanos);
@@ -1937,7 +1936,6 @@ async fn op_futime_async(
mtime_secs: i64,
mtime_nanos: u32,
) -> Result<(), AnyError> {
- super::check_unstable2(&state, "Deno.futime");
let atime = filetime::FileTime::from_unix_time(atime_secs, atime_nanos);
let mtime = filetime::FileTime::from_unix_time(mtime_secs, mtime_nanos);