diff --git a/lib/caronte/streams/websocket.js b/lib/caronte/streams/websocket.js index 2d2dc69..3f073ab 100644 --- a/lib/caronte/streams/websocket.js +++ b/lib/caronte/streams/websocket.js @@ -3,12 +3,11 @@ var Duplex = require('stream').Duplex, http = require('http'), https = require('https'); -function WebsocketStream(options, res, instance) { +function WebsocketStream(options, res) { Duplex.call(this); this.options = options; this.res = res; - this.instance = intance; var self = this;