summaryrefslogtreecommitdiffstats
path: root/web/react
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-10-15 11:12:09 -0400
committerJoramWilander <jwawilander@gmail.com>2015-10-16 11:48:56 -0400
commit93eaa80a3bfacbb0c4a350474ca3d81b28b5d7ab (patch)
treef1dc13210ff8586092e1d26ede4d8a59490cfe48 /web/react
parent20723437aa607abdfa0e9353927e8bf8694a6b2c (diff)
downloadchat-93eaa80a3bfacbb0c4a350474ca3d81b28b5d7ab.tar.gz
chat-93eaa80a3bfacbb0c4a350474ca3d81b28b5d7ab.tar.bz2
chat-93eaa80a3bfacbb0c4a350474ca3d81b28b5d7ab.zip
Remove unnecessary bind
Diffstat (limited to 'web/react')
-rw-r--r--web/react/stores/socket_store.jsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/web/react/stores/socket_store.jsx b/web/react/stores/socket_store.jsx
index 8645ef3b4..77951f214 100644
--- a/web/react/stores/socket_store.jsx
+++ b/web/react/stores/socket_store.jsx
@@ -28,7 +28,6 @@ class SocketStoreClass extends EventEmitter {
this.emitChange = this.emitChange.bind(this);
this.addChangeListener = this.addChangeListener.bind(this);
this.removeChangeListener = this.removeChangeListener.bind(this);
- this.handleMessage = this.handleMessage.bind(this);
this.sendMessage = this.sendMessage.bind(this);
this.failCount = 0;