From 3877183268ac74fcbf15204181f7225fb2c36556 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Tue, 17 Jan 2012 08:12:08 -0800 Subject: [PATCH] Removed unneeded .bind --- lib/socket.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/socket.js b/lib/socket.js index 05ad208e..fd505268 100644 --- a/lib/socket.js +++ b/lib/socket.js @@ -42,7 +42,6 @@ function Socket (opts) { this.transports = opts.transports || ['polling', 'websocket', 'flashsocket']; this.readyState = ''; this.writeBuffer = []; - this.flush = this.flush.bind(this); this.open(); };