Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlansneff committed Feb 21, 2019
1 parent 9f40eed commit 336c1d9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/runtime/src/cache.rs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down Expand Up @@ -136,4 +136,3 @@ pub trait Cache {
unsafe fn load(&self, key: Self::Key) -> Result<Module, Self::LoadError>;
fn store(&mut self, module: Module) -> Result<Self::Key, Self::StoreError>;
}

0 comments on commit 336c1d9

Please sign in to comment.