diff options
Diffstat (limited to 'runtime/js.rs')
-rw-r--r-- | runtime/js.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/js.rs b/runtime/js.rs index cdd479858..54a08d9b4 100644 --- a/runtime/js.rs +++ b/runtime/js.rs @@ -30,7 +30,7 @@ pub static CLI_SNAPSHOT: Lazy<Box<[u8]>> = Lazy::new( pub fn deno_isolate_init() -> Snapshot { debug!("Deno isolate init with snapshots."); - Snapshot::Static(&*CLI_SNAPSHOT) + Snapshot::Static(&CLI_SNAPSHOT) } #[cfg(test)] |