aboutsummaryrefslogtreecommitdiff
path: root/lib/child_process.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/child_process.js')
-rw-r--r--lib/child_process.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/child_process.js b/lib/child_process.js
index a0a2509631..f1550342ce 100644
--- a/lib/child_process.js
+++ b/lib/child_process.js
@@ -104,8 +104,6 @@ var handleConversion = {
},
got: function(message, handle, emit) {
- var self = this;
-
var server = new net.Server();
server.listen(handle, function() {
emit(server);
@@ -199,8 +197,6 @@ var handleConversion = {
function SocketListSend(slave, key) {
EventEmitter.call(this);
- var self = this;
-
this.key = key;
this.slave = slave;
}
@@ -585,7 +581,7 @@ exports.exec = function(command /*, options, callback */) {
exports.execFile = function(file /* args, options, callback */) {
- var args, optionArg, callback;
+ var args, callback;
var options = {
encoding: 'utf8',
timeout: 0,