From 7570c6e50aafb74a8c89008df5e979f924c733b9 Mon Sep 17 00:00:00 2001 From: Pavel Strashkin Date: Thu, 4 Jun 2015 18:26:35 -0700 Subject: [PATCH] Remove unused variables to make jshint happy --- src/connection/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/connection/index.js b/src/connection/index.js index 41153985..04cc2633 100644 --- a/src/connection/index.js +++ b/src/connection/index.js @@ -11,11 +11,11 @@ export default class Connection extends EventEmitter { this.managed = false } - execute(sql, bindings) { + execute() { return this._execute() } - + }