Skip to content

Commit

Permalink
src: fix check-imports.py linter errors
Browse files Browse the repository at this point in the history
This patch fixes all the linter errors.

PR-URL: #6105
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
thefourtheye authored and jasnell committed Apr 26, 2016
1 parent e928eda commit 633268c
Show file tree
Hide file tree
Showing 16 changed files with 5 additions and 26 deletions.
1 change: 0 additions & 1 deletion src/async-wrap.cc
Expand Up @@ -8,7 +8,6 @@
#include "v8.h"
#include "v8-profiler.h"

using v8::Array;
using v8::Boolean;
using v8::Context;
using v8::Function;
Expand Down
1 change: 0 additions & 1 deletion src/env.cc
Expand Up @@ -17,7 +17,6 @@ using v8::Local;
using v8::Message;
using v8::StackFrame;
using v8::StackTrace;
using v8::TryCatch;
using v8::Value;

void Environment::PrintSyncTrace() const {
Expand Down
2 changes: 0 additions & 2 deletions src/node.cc
Expand Up @@ -127,8 +127,6 @@ using v8::PromiseRejectMessage;
using v8::PropertyCallbackInfo;
using v8::ScriptOrigin;
using v8::SealHandleScope;
using v8::StackFrame;
using v8::StackTrace;
using v8::String;
using v8::TryCatch;
using v8::Uint32;
Expand Down
1 change: 0 additions & 1 deletion src/node_buffer.cc
Expand Up @@ -71,7 +71,6 @@ using v8::Context;
using v8::EscapableHandleScope;
using v8::Function;
using v8::FunctionCallbackInfo;
using v8::FunctionTemplate;
using v8::HandleScope;
using v8::Integer;
using v8::Isolate;
Expand Down
2 changes: 1 addition & 1 deletion src/node_config.cc
Expand Up @@ -11,8 +11,8 @@ namespace node {
using v8::Context;
using v8::Local;
using v8::Object;
using v8::Value;
using v8::ReadOnly;
using v8::Value;

// The config binding is used to provide an internal view of compile or runtime
// config options that are required internally by lib/*.js code. This is an
Expand Down
2 changes: 0 additions & 2 deletions src/node_contextify.cc
Expand Up @@ -11,7 +11,6 @@

namespace node {

using v8::AccessType;
using v8::Array;
using v8::ArrayBuffer;
using v8::Boolean;
Expand All @@ -30,7 +29,6 @@ using v8::Maybe;
using v8::MaybeLocal;
using v8::Name;
using v8::NamedPropertyHandlerConfiguration;
using v8::None;
using v8::Object;
using v8::ObjectTemplate;
using v8::Persistent;
Expand Down
1 change: 0 additions & 1 deletion src/node_v8.cc
Expand Up @@ -20,7 +20,6 @@ using v8::NewStringType;
using v8::Object;
using v8::String;
using v8::Uint32;
using v8::Uint32Array;
using v8::V8;
using v8::Value;

Expand Down
3 changes: 0 additions & 3 deletions src/node_watchdog.cc
Expand Up @@ -4,9 +4,6 @@

namespace node {

using v8::V8;


Watchdog::Watchdog(v8::Isolate* isolate, uint64_t ms) : isolate_(isolate),
destroyed_(false) {
int rc;
Expand Down
1 change: 0 additions & 1 deletion src/pipe_wrap.cc
Expand Up @@ -26,7 +26,6 @@ using v8::HandleScope;
using v8::Integer;
using v8::Local;
using v8::Object;
using v8::PropertyAttribute;
using v8::String;
using v8::Undefined;
using v8::Value;
Expand Down
5 changes: 0 additions & 5 deletions src/stream_wrap.cc
Expand Up @@ -22,20 +22,15 @@

namespace node {

using v8::Array;
using v8::Context;
using v8::EscapableHandleScope;
using v8::FunctionCallbackInfo;
using v8::FunctionTemplate;
using v8::HandleScope;
using v8::Integer;
using v8::Local;
using v8::Number;
using v8::Object;
using v8::PropertyCallbackInfo;
using v8::String;
using v8::True;
using v8::Undefined;
using v8::Value;


Expand Down
2 changes: 1 addition & 1 deletion src/string_bytes.cc
Expand Up @@ -19,10 +19,10 @@ using v8::EscapableHandleScope;
using v8::HandleScope;
using v8::Isolate;
using v8::Local;
using v8::MaybeLocal;
using v8::Object;
using v8::String;
using v8::Value;
using v8::MaybeLocal;

template <typename ResourceType, typename TypeName>
class ExternString: public ResourceType {
Expand Down
1 change: 0 additions & 1 deletion src/tcp_wrap.cc
Expand Up @@ -27,7 +27,6 @@ using v8::HandleScope;
using v8::Integer;
using v8::Local;
using v8::Object;
using v8::PropertyAttribute;
using v8::String;
using v8::Undefined;
using v8::Value;
Expand Down
4 changes: 1 addition & 3 deletions src/tls_wrap.cc
Expand Up @@ -15,18 +15,16 @@

namespace node {

using crypto::SSLWrap;
using crypto::SecureContext;
using crypto::SSLWrap;
using v8::Boolean;
using v8::Context;
using v8::EscapableHandleScope;
using v8::Exception;
using v8::Function;
using v8::FunctionCallbackInfo;
using v8::FunctionTemplate;
using v8::Integer;
using v8::Local;
using v8::Null;
using v8::Object;
using v8::String;
using v8::Value;
Expand Down
1 change: 0 additions & 1 deletion src/tty_wrap.cc
Expand Up @@ -21,7 +21,6 @@ using v8::FunctionTemplate;
using v8::Integer;
using v8::Local;
using v8::Object;
using v8::PropertyAttribute;
using v8::String;
using v8::Value;

Expand Down
2 changes: 1 addition & 1 deletion src/util.cc
Expand Up @@ -6,8 +6,8 @@
namespace node {

using v8::Isolate;
using v8::String;
using v8::Local;
using v8::String;
using v8::Value;

static int MakeUtf8String(Isolate* isolate,
Expand Down
2 changes: 1 addition & 1 deletion src/uv.cc
Expand Up @@ -9,8 +9,8 @@ namespace uv {
using v8::Context;
using v8::FunctionCallbackInfo;
using v8::FunctionTemplate;
using v8::Local;
using v8::Integer;
using v8::Local;
using v8::Object;
using v8::String;
using v8::Value;
Expand Down

0 comments on commit 633268c

Please sign in to comment.