diff options
author | fiaxh <git@lightrise.org> | 2023-10-07 14:29:26 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2023-10-07 14:34:23 +0200 |
commit | 1e167eeea67f18f3d5788dc34d97d94e6f401499 (patch) | |
tree | df73a70a25fb02d7a2e70623b3ab5ecbe86ced53 /xmpp-vala/src/core | |
parent | 0c45387bf903e5b0d02502d27642dd2a78aa6539 (diff) | |
download | dino-1e167eeea67f18f3d5788dc34d97d94e6f401499.tar.gz dino-1e167eeea67f18f3d5788dc34d97d94e6f401499.zip |
Fix some compiler warnings
Diffstat (limited to 'xmpp-vala/src/core')
-rw-r--r-- | xmpp-vala/src/core/xmpp_stream.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmpp-vala/src/core/xmpp_stream.vala b/xmpp-vala/src/core/xmpp_stream.vala index 42e90bf9..54433b67 100644 --- a/xmpp-vala/src/core/xmpp_stream.vala +++ b/xmpp-vala/src/core/xmpp_stream.vala @@ -30,9 +30,9 @@ public abstract class Xmpp.XmppStream : Object { this.remote_name = remote_name; } - public abstract async void connect() throws IOError; + public abstract new async void connect() throws IOError; - public abstract async void disconnect() throws IOError; + public abstract new async void disconnect() throws IOError; public abstract async StanzaNode read() throws IOError; |