From 57841d6a74bc552dd70e19e7f7703a78eae1c34f Mon Sep 17 00:00:00 2001
From: cgeek <cem.moreau@gmail.com>
Date: Wed, 4 Oct 2017 09:38:13 +0200
Subject: [PATCH] [fix] WS2PStreamer moving was not complete

---
 app/modules/ws2p/lib/WS2PClient.ts | 2 +-
 app/modules/ws2p/lib/WS2PServer.ts | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/modules/ws2p/lib/WS2PClient.ts b/app/modules/ws2p/lib/WS2PClient.ts
index 0882cb5be..00df5c150 100644
--- a/app/modules/ws2p/lib/WS2PClient.ts
+++ b/app/modules/ws2p/lib/WS2PClient.ts
@@ -1,9 +1,9 @@
 import {Server} from "../../../../server"
 import {WS2PConnection, WS2PPubkeyLocalAuth, WS2PPubkeyRemoteAuth} from "./WS2PConnection"
-import {WS2PStreamer} from "../../../lib/streams/WS2PStreamer"
 import {Key} from "../../../lib/common-libs/crypto/keyring"
 import {WS2PMessageHandler} from "./impl/WS2PMessageHandler"
 import {WS2PConstants} from "./constants"
+import { WS2PStreamer } from "./WS2PStreamer";
 
 export class WS2PClient {
 
diff --git a/app/modules/ws2p/lib/WS2PServer.ts b/app/modules/ws2p/lib/WS2PServer.ts
index 13f4cc211..93a7e8dc9 100644
--- a/app/modules/ws2p/lib/WS2PServer.ts
+++ b/app/modules/ws2p/lib/WS2PServer.ts
@@ -1,11 +1,11 @@
 import {Server} from "../../../../server"
 import {WS2PConnection, WS2PPubkeyLocalAuth, WS2PPubkeyRemoteAuth} from "./WS2PConnection"
-import {WS2PStreamer} from "../../../lib/streams/WS2PStreamer"
 import {Key} from "../../../lib/common-libs/crypto/keyring"
 import {GlobalFifoPromise} from "../../../service/GlobalFifoPromise"
 import * as events from "events"
 import {WS2PConstants} from "./constants"
 import {WS2PMessageHandler} from "./impl/WS2PMessageHandler"
+import { WS2PStreamer } from "./WS2PStreamer";
 
 const WebSocketServer = require('ws').Server
 
-- 
GitLab