From 336c1d9c5f6b8f78d788a033f403e49370cb9f4f Mon Sep 17 00:00:00 2001 From: Lachlan Sneff Date: Wed, 20 Feb 2019 17:00:48 -0800 Subject: [PATCH] Fix lint --- lib/runtime/src/cache.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/runtime/src/cache.rs b/lib/runtime/src/cache.rs index b0db19fe8..01bf90c25 100644 --- a/lib/runtime/src/cache.rs +++ b/lib/runtime/src/cache.rs @@ -1,7 +1,7 @@ use crate::Module; use std::path::Path; use wasmer_runtime_core::cache::{hash_data, Cache as CoreCache}; -use wasmer_runtime_core::module::{WasmHash}; +use wasmer_runtime_core::module::WasmHash; pub use wasmer_runtime_core::cache::Error; @@ -136,4 +136,3 @@ pub trait Cache { unsafe fn load(&self, key: Self::Key) -> Result; fn store(&mut self, module: Module) -> Result; } -