diff options
Diffstat (limited to 'runtime/build.rs')
-rw-r--r-- | runtime/build.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/runtime/build.rs b/runtime/build.rs index 358a30dc5..2f3b12595 100644 --- a/runtime/build.rs +++ b/runtime/build.rs @@ -122,10 +122,7 @@ mod startup_snapshot { } impl deno_node::NodePermissions for Permissions { - fn check_read( - &mut self, - _p: &Path, - ) -> Result<(), deno_core::error::AnyError> { + fn check_read(&self, _p: &Path) -> Result<(), deno_core::error::AnyError> { unreachable!("snapshotting!") } } |