removes redundant reference to "this.torPool"

This commit is contained in:
Zachary Boyd 2018-05-09 07:39:54 -07:00
parent fadde58af2
commit 9f5f26d277

View file

@ -6,7 +6,7 @@ const rpc = require('jrpc2');
class ControlServer {
constructor(logger) {
this.torPool = this.torPool = new TorPool(null, null, logger);
this.torPool = new TorPool(null, null, logger);
this.logger = logger;
let server = this.server = new rpc.Server();