summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/streaming/messaging-index-stream-manager.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-03-07 19:00:15 +0900
committerGitHub <noreply@github.com>2018-03-07 19:00:15 +0900
commita227ef30e8bc8282605361b013d323bb3bbc4e7d (patch)
tree8bd28f1d27a77e061e7b7f56f8794e483fe82f8f /src/web/app/common/scripts/streaming/messaging-index-stream-manager.ts
parentv3999 (diff)
parentoops (diff)
downloadsharkey-a227ef30e8bc8282605361b013d323bb3bbc4e7d.tar.gz
sharkey-a227ef30e8bc8282605361b013d323bb3bbc4e7d.tar.bz2
sharkey-a227ef30e8bc8282605361b013d323bb3bbc4e7d.zip
Merge pull request #1197 from syuilo/othello
Othello
Diffstat (limited to 'src/web/app/common/scripts/streaming/messaging-index-stream-manager.ts')
-rw-r--r--src/web/app/common/scripts/streaming/messaging-index-stream-manager.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/web/app/common/scripts/streaming/messaging-index-stream-manager.ts b/src/web/app/common/scripts/streaming/messaging-index-stream-manager.ts
deleted file mode 100644
index 0f08b01481..0000000000
--- a/src/web/app/common/scripts/streaming/messaging-index-stream-manager.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-import StreamManager from './stream-manager';
-import Connection from './messaging-index-stream';
-
-export default class MessagingIndexStreamManager extends StreamManager<Connection> {
- private me;
-
- constructor(me) {
- super();
-
- this.me = me;
- }
-
- public getConnection() {
- if (this.connection == null) {
- this.connection = new Connection(this.me);
- }
-
- return this.connection;
- }
-}