summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/streaming/drive-stream-manager.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/app/common/scripts/streaming/drive-stream-manager.ts')
-rw-r--r--src/web/app/common/scripts/streaming/drive-stream-manager.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/web/app/common/scripts/streaming/drive-stream-manager.ts b/src/web/app/common/scripts/streaming/drive-stream-manager.ts
deleted file mode 100644
index 8acdd7cbba..0000000000
--- a/src/web/app/common/scripts/streaming/drive-stream-manager.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-import StreamManager from './stream-manager';
-import Connection from './drive-stream';
-
-export default class DriveStreamManager 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;
- }
-}