From 7d95c5c062c7d836bab912e95587bf7fa52326c4 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Thu, 5 Sep 2024 21:23:37 +1000 Subject: BREAKING(fs): remove `Deno.funlock[Sync]()` (#25442) Towards #22079 --------- Signed-off-by: Asher Gomez --- runtime/js/99_main.js | 4 ---- 1 file changed, 4 deletions(-) (limited to 'runtime/js/99_main.js') diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index 1b8048725..e00c592f1 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -802,8 +802,6 @@ function bootstrapMainRuntime(runtimeOptions, warmup = false) { delete globalThis.window; delete Deno.Buffer; delete Deno.FsFile.prototype.rid; - delete Deno.funlock; - delete Deno.funlockSync; } } else { // Warmup @@ -963,8 +961,6 @@ function bootstrapWorkerRuntime( if (internals.future) { delete Deno.Buffer; delete Deno.FsFile.prototype.rid; - delete Deno.funlock; - delete Deno.funlockSync; } } else { // Warmup -- cgit v1.2.3