diff --git a/cloudshift/channel/PushListenerImpl.hx b/cloudshift/channel/PushListenerImpl.hx index cb1a96d..a7c8d66 100644 --- a/cloudshift/channel/PushListenerImpl.hx +++ b/cloudshift/channel/PushListenerImpl.hx @@ -66,12 +66,6 @@ class PushListenerImpl implements Conduit { return oc; } - public function stop_(?d:Dynamic):Outcome { - var prm = Core.outcome(); - prm.resolve(Right(this)); - return prm; - } - function removeSession(session) { if (session != null) { Core.info("removing session"); diff --git a/cloudshift/channel/TChannelClient.hx b/cloudshift/channel/TChannelClient.hx index 4c89c76..e6e6799 100644 --- a/cloudshift/channel/TChannelClient.hx +++ b/cloudshift/channel/TChannelClient.hx @@ -46,13 +46,6 @@ class TChannelClient implements ChannelClient, return oc; } - public function - stop_(?d:Dynamic) { - var oc = Core.outcome(); - oc.resolve(Right(d)); - return oc; - } - public function channel(id:String):Outcome> { return _sink.authorize(_sink.chan(id)); diff --git a/cloudshift/channel/TChannelServer.hx b/cloudshift/channel/TChannelServer.hx index da4c308..669688b 100644 --- a/cloudshift/channel/TChannelServer.hx +++ b/cloudshift/channel/TChannelServer.hx @@ -94,13 +94,6 @@ class TChannelServer implements ChannelServer,implements Part,i return oc; } - public function - stop_(?d:Dynamic):Outcome { - return null; - } - function doLogin(p:Future,e:ESession) { switch(e) { case UserOk(sid): diff --git a/cloudshift/session/SessionMgrImpl.hx b/cloudshift/session/SessionMgrImpl.hx index 4f2c0b6..5a3f79f 100644 --- a/cloudshift/session/SessionMgrImpl.hx +++ b/cloudshift/session/SessionMgrImpl.hx @@ -34,12 +34,6 @@ implements Part, implements SessionMgr return oc; } - - public function - stop_(?d:Dynamic):Outcome { - return null; - } - public function http() { return _http; }