Skip to content

Commit

Permalink
Chore: Removed unused imports/exports (#10288)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidM-D authored Dec 4, 2023
1 parent 21851d2 commit cf2700e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion core/primitives/src/runtime/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
pub use near_primitives_core::runtime::fees;
pub use near_primitives_core::runtime::*;

pub mod apply_state;
pub mod config;
Expand Down
2 changes: 1 addition & 1 deletion runtime/near-vm/compiler/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

mod lib {
pub mod std {
pub use std::{borrow, boxed, collections, fmt, str, string, sync, vec};
pub use std::{borrow, boxed, fmt, str, string, sync, vec};
}
}

Expand Down
2 changes: 1 addition & 1 deletion runtime/near-vm/vm/src/instance/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ mod allocator;
mod r#ref;

pub use allocator::InstanceAllocator;
pub use r#ref::{InstanceRef, WeakInstanceRef, WeakOrStrongInstanceRef};
pub use r#ref::{InstanceRef, WeakOrStrongInstanceRef};

use crate::func_data_registry::VMFuncRef;
use crate::global::Global;
Expand Down

0 comments on commit cf2700e

Please sign in to comment.