[polari] telepathyClient: Remove getAccounts()
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [polari] telepathyClient: Remove getAccounts()
- Date: Thu, 8 Aug 2013 13:07:31 +0000 (UTC)
commit 17b729e31ced01ae3af65c4e82899a93c13bef60
Author: Florian Müllner <fmuellner gnome org>
Date: Thu Aug 8 02:10:10 2013 +0200
telepathyClient: Remove getAccounts()
It's unused by now ...
src/telepathyClient.js | 30 ------------------------------
1 files changed, 0 insertions(+), 30 deletions(-)
---
diff --git a/src/telepathyClient.js b/src/telepathyClient.js
index 204eea3..e8a686c 100644
--- a/src/telepathyClient.js
+++ b/src/telepathyClient.js
@@ -11,11 +11,8 @@ const TelepathyClient = new Lang.Class({
Name: 'TelepathyClient',
_init: function() {
- this._connMgrs = {};
-
this._roomMgr = ChatroomManager.getDefault();
this._accountMgr = Tp.AccountManager.dup();
- this._accountMgr.prepare_async(null, Lang.bind(this, this._onPrepared));
let factory = this._accountMgr.get_factory();
factory.add_account_features([Tp.Account.get_feature_quark_connection()]);
@@ -49,33 +46,6 @@ const TelepathyClient = new Lang.Class({
this._observer.register();
},
- _onPrepared: function() {
- Tp.list_connection_managers_async(null,
- Lang.bind(this, function (o, res) {
- let mgrs = Tp.list_connection_managers_finish(res);
- for (let i = 0; i < mgrs.length; i++)
- this._connMgrs[mgrs[i].cm_name] = mgrs[i];
- }));
- },
-
- getAccounts: function() {
- return this._accountMgr.dup_valid_accounts().filter(Lang.bind(this,
- function(a) {
- if (!a.enabled)
- return false;
-
- if (a.connection)
- return a.connection.capabilities.supports_text_chatrooms();
-
- if (!this._connMgrs[a.cm_name])
- return false;
-
- let proto = this._connMgrs[a.cm_name].get_protocol_object(a.protocol_name);
- //return proto.capabilities.supports_text_chatrooms();
- return proto != null;
- }));
- },
-
_observeChannels: function(observer, account, conn, channels, op, requests, context) {
if (conn.protocol_name != 'irc') {
let message = 'Not implementing non-IRC protocols';
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]