Skip to content

Commit

Permalink
lint-clean: eliminate unused imports (thanks to @winding-lines for #107)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Herman committed Sep 6, 2016
1 parent 32ed2d8 commit 520d8ab
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/internal/js/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use neon_sys;
use neon_sys::raw;
use neon_sys::tag::Tag;
use internal::mem::{Handle, HandleInternal, Managed};
use internal::scope::{Scope, ScopeInternal, RootScopeInternal};
use internal::scope::{Scope, RootScopeInternal};
use internal::vm::{VmResult, Throw, JsResult, Isolate, IsolateInternal, CallbackInfo, Call, This, Kernel};
use internal::js::error::{JsError, Kind};

Expand Down
2 changes: 1 addition & 1 deletion src/internal/mem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::marker::PhantomData;
use std::ops::{Deref, DerefMut};
use neon_sys;
use neon_sys::raw;
use internal::js::{Value, ValueInternal, SuperType};
use internal::js::{Value, SuperType};
use internal::js::error::{JsError, Kind};
use internal::vm::{JsResult, Lock, LockState};
use internal::scope::Scope;
Expand Down
2 changes: 1 addition & 1 deletion src/internal/scope.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use neon_sys;
use neon_sys::raw;
use internal::mem::{Handle, HandleInternal};
use internal::js::Value;
use internal::vm::{Isolate, IsolateInternal, CallbackInfo, This, Call, FunctionCall};
use internal::vm::{Isolate, IsolateInternal};

pub trait ScopeInternal: Sized {
fn isolate(&self) -> Isolate;
Expand Down
2 changes: 1 addition & 1 deletion src/internal/vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::os::raw::c_void;
use cslice::CMutSlice;
use neon_sys;
use neon_sys::raw;
use internal::scope::{Scope, ScopeInternal, RootScope, RootScopeInternal};
use internal::scope::{Scope, RootScope, RootScopeInternal};
use internal::js::{JsValue, Value, Object, JsObject, JsFunction};
use internal::js::class::ClassMetadata;
use internal::js::error::{JsError, Kind};
Expand Down

0 comments on commit 520d8ab

Please # to comment.