aboutsummaryrefslogtreecommitdiff
path: root/js/helper-classes/RDGE/src/core/script/sockets.js
diff options
context:
space:
mode:
authorKris Kowal2012-07-06 11:53:10 -0700
committerKris Kowal2012-07-06 15:01:48 -0700
commit04343eda8c2f870b0da55cfdc8003c99fe1cc4de (patch)
tree0a6048889b65bb16ff58822e55bc1346e9eb07bd /js/helper-classes/RDGE/src/core/script/sockets.js
parent648ee61ae84216d0236e0dbc211addc13b2cfa3a (diff)
downloadninja-04343eda8c2f870b0da55cfdc8003c99fe1cc4de.tar.gz
Remove trailing spaces
Diffstat (limited to 'js/helper-classes/RDGE/src/core/script/sockets.js')
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/sockets.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/helper-classes/RDGE/src/core/script/sockets.js b/js/helper-classes/RDGE/src/core/script/sockets.js
index e5334280..745a0a4d 100755
--- a/js/helper-classes/RDGE/src/core/script/sockets.js
+++ b/js/helper-classes/RDGE/src/core/script/sockets.js
@@ -116,13 +116,13 @@ RDGE.ConnectionPool = funciton(base, startAddr, endAddr, messageHandlerFunc)
116 this.end = endAddr; 116 this.end = endAddr;
117 this.port = 38951; 117 this.port = 38951;
118 this.messageHandler = messageHandlerFunc; 118 this.messageHandler = messageHandlerFunc;
119 119
120 this.listenSockets = []; 120 this.listenSockets = [];
121 this.connectedSockets = []; 121 this.connectedSockets = [];
122 122
123 this.openHandler = null; 123 this.openHandler = null;
124 this.closeHandler = null; 124 this.closeHandler = null;
125 125
126 this.interval = null; 126 this.interval = null;
127 127
128 this.Init = function (openHandler, closeHandler) { 128 this.Init = function (openHandler, closeHandler) {
@@ -176,6 +176,6 @@ RDGE.ConnectionPool = funciton(base, startAddr, endAddr, messageHandlerFunc)
176 this.listenSockets[i] = CreateSocket(url, this.listenSockets, this.connectedSockets, this.messageHandler, i, this.openHandler, this.closeHandler); 176 this.listenSockets[i] = CreateSocket(url, this.listenSockets, this.connectedSockets, this.messageHandler, i, this.openHandler, this.closeHandler);
177 } 177 }
178 } 178 }
179 }; 179 };
180}; 180};
181 181