telepathyClient: Remove some dead code

This has been unused ever since we stopped logging presence changes in
commit 4448b65a18 ...
This commit is contained in:
Florian Müllner 2015-03-17 02:25:15 +01:00
parent 681861c8c7
commit b2ae945cf2

View File

@ -546,14 +546,8 @@ const ChatSource = new Lang.Class({
},
_presenceChanged: function (contact, presence, status, message) {
let msg, title;
title = GLib.markup_escape_text(this.title, -1);
let title = GLib.markup_escape_text(this.title, -1);
this._notification.update(this._notification.title, null, { customContent: true, secondaryGIcon: this.getSecondaryIcon() });
if (message)
msg += ' <i>(' + GLib.markup_escape_text(message, -1) + ')</i>';
},
_pendingRemoved: function(channel, message) {