aboutsummaryrefslogtreecommitdiff
path: root/xmpp-vala/src/module/xep/0085_chat_state_notifications.vala
diff options
context:
space:
mode:
authorfiaxh <git@mx.ax.lt>2017-08-12 23:27:20 +0200
committerfiaxh <git@mx.ax.lt>2017-08-14 22:38:17 +0200
commitb0264b3e0034ddd9ea76d0e13bb4c3c709ba3b3e (patch)
tree9ee146149360fa87a123c77e8d983ae393ed8f8f /xmpp-vala/src/module/xep/0085_chat_state_notifications.vala
parenta59f728bdd7b81964a460b96b6c56da0d9dfda01 (diff)
downloaddino-b0264b3e0034ddd9ea76d0e13bb4c3c709ba3b3e.tar.gz
dino-b0264b3e0034ddd9ea76d0e13bb4c3c709ba3b3e.zip
xmpp-vala: Remove require-functions
Diffstat (limited to 'xmpp-vala/src/module/xep/0085_chat_state_notifications.vala')
-rw-r--r--xmpp-vala/src/module/xep/0085_chat_state_notifications.vala5
1 files changed, 0 insertions, 5 deletions
diff --git a/xmpp-vala/src/module/xep/0085_chat_state_notifications.vala b/xmpp-vala/src/module/xep/0085_chat_state_notifications.vala
index 9b5ba075..5de504a2 100644
--- a/xmpp-vala/src/module/xep/0085_chat_state_notifications.vala
+++ b/xmpp-vala/src/module/xep/0085_chat_state_notifications.vala
@@ -30,7 +30,6 @@ public class Module : XmppStreamModule {
}
public override void attach(XmppStream stream) {
- ServiceDiscovery.Module.require(stream);
stream.get_module(ServiceDiscovery.Module.IDENTITY).add_feature(stream, NS_URI);
stream.get_module(Message.Module.IDENTITY).pre_send_message.connect(on_pre_send_message);
stream.get_module(Message.Module.IDENTITY).received_message.connect(on_received_message);
@@ -41,10 +40,6 @@ public class Module : XmppStreamModule {
stream.get_module(Message.Module.IDENTITY).received_message.disconnect(on_received_message);
}
- public static void require(XmppStream stream) {
- if (stream.get_module(IDENTITY) == null) stream.add_module(new Module()); ;
- }
-
public override string get_ns() { return NS_URI; }
public override string get_id() { return IDENTITY.id; }