diff options
author | fiaxh <git@lightrise.org> | 2021-04-09 23:59:03 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2021-04-11 14:42:59 +0200 |
commit | dfffa08ec16e16157df6e7036e09073a546d7552 (patch) | |
tree | 4e42223be646880cc0b9b938208a464231a57d23 /xmpp-vala/src/module/xep/0176_jingle_ice_udp | |
parent | 6ebdec1d78a7ad1b8668a2ba6eceb34515c75384 (diff) | |
download | dino-dfffa08ec16e16157df6e7036e09073a546d7552.tar.gz dino-dfffa08ec16e16157df6e7036e09073a546d7552.zip |
Fix warnings
Diffstat (limited to 'xmpp-vala/src/module/xep/0176_jingle_ice_udp')
-rw-r--r-- | xmpp-vala/src/module/xep/0176_jingle_ice_udp/transport_parameters.vala | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/xmpp-vala/src/module/xep/0176_jingle_ice_udp/transport_parameters.vala b/xmpp-vala/src/module/xep/0176_jingle_ice_udp/transport_parameters.vala index 4976f560..6684ddc2 100644 --- a/xmpp-vala/src/module/xep/0176_jingle_ice_udp/transport_parameters.vala +++ b/xmpp-vala/src/module/xep/0176_jingle_ice_udp/transport_parameters.vala @@ -109,7 +109,6 @@ public abstract class Xmpp.Xep.JingleIceUdp.IceUdpTransportParameters : Jingle.T string? ufrag = node.get_attribute("ufrag"); if (pwd != null) remote_pwd = pwd; if (ufrag != null) remote_ufrag = ufrag; - uint8 components = 0; foreach (StanzaNode candidateNode in node.get_subnodes("candidate")) { remote_candidates.add(Candidate.parse(candidateNode)); } |