Skip to content

Commit 51f40c9

Browse files
committed
cleanup
1 parent ded0de1 commit 51f40c9

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

js-src/Connector.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,16 @@ export class Connector extends BaseConnector {
99
constructor(options: object) {
1010
super(options);
1111
}
12-
/**
13-
* The Socket.io connection instance.
14-
*/
12+
13+
1514
socket: Websocket;
1615

1716
/**
1817
* All of the subscribed channel names.
1918
*/
2019
channels: { [name: string]: Channel } = {};
2120

22-
/**
23-
* Create a fresh Socket.io connection.
24-
*/
21+
2522
connect(): void {
2623
this.socket = new Websocket(this.options);
2724

0 commit comments

Comments
 (0)