src: fix up unused/unordered imports
authorBen Noordhuis <info@bnoordhuis.nl>
Mon, 26 Aug 2013 22:13:50 +0000 (00:13 +0200)
committerBen Noordhuis <info@bnoordhuis.nl>
Mon, 26 Aug 2013 22:13:50 +0000 (00:13 +0200)
src/node_buffer.cc
src/node_contextify.cc
src/node_win32_etw_provider.cc
src/timer_wrap.cc
src/tls_wrap.cc

index df3d878..519fddf 100644 (file)
@@ -66,7 +66,6 @@ using v8::Object;
 using v8::Persistent;
 using v8::String;
 using v8::Uint32;
-using v8::Undefined;
 using v8::Value;
 
 static Persistent<Function> p_buffer_fn;
index ef2ef89..d71625e 100644 (file)
@@ -43,8 +43,8 @@ using v8::PropertyCallbackInfo;
 using v8::Script;
 using v8::String;
 using v8::TryCatch;
-using v8::Value;
 using v8::V8;
+using v8::Value;
 
 
 class ContextifyContext : ObjectWrap {
index 1119e7e..23aa722 100644 (file)
@@ -26,8 +26,8 @@
 
 namespace node {
 
-using v8::V8;
 using v8::JitCodeEvent;
+using v8::V8;
 
 HMODULE advapi;
 REGHANDLE node_provider;
index 1f84de5..c89f772 100644 (file)
@@ -34,7 +34,6 @@ using v8::HandleScope;
 using v8::Integer;
 using v8::Local;
 using v8::Object;
-using v8::String;
 using v8::Value;
 
 const uint32_t kOnTimeout = 0;
index cf51b98..0f31eed 100644 (file)
@@ -31,9 +31,8 @@
 
 namespace node {
 
-using crypto::SecureContext;
 using crypto::SSLWrap;
-using v8::Array;
+using crypto::SecureContext;
 using v8::Boolean;
 using v8::Exception;
 using v8::Function;