From cd1b19a289f066c7fc63c5a58fc6f08407688e67 Mon Sep 17 00:00:00 2001 From: Lann Date: Fri, 17 Mar 2023 16:27:04 -0400 Subject: [PATCH] Remove reference to `store` in `Linker::instantiate_pre` (#6057) The `store` param was removed in #5683 --- crates/wasmtime/src/linker.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/crates/wasmtime/src/linker.rs b/crates/wasmtime/src/linker.rs index 70cc04a39e..6280e9c582 100644 --- a/crates/wasmtime/src/linker.rs +++ b/crates/wasmtime/src/linker.rs @@ -1125,13 +1125,6 @@ impl Linker { /// Returns an error which may be downcast to an [`UnknownImportError`] if /// the module has any unresolvable imports. /// - /// # Panics - /// - /// This method will panic if any item defined in this linker used by - /// `module` is not owned by `store`. Additionally this will panic if the - /// [`Engine`] that the `store` belongs to is different than this - /// [`Linker`]. - /// /// # Examples /// /// ```