Remove unused

This commit is contained in:
Mikhail 2024-05-05 17:02:43 +02:00
parent 361a8ab192
commit 6f53b727eb
2 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ impl<'a> XmppConnection<'a> {
}; };
req.serialize(output); req.serialize(output);
} }
IqClientBody::MessageArchiveRequest(request) => { IqClientBody::MessageArchiveRequest(_) => {
let response = Iq { let response = Iq {
from: iq.to, from: iq.to,
id: iq.id, id: iq.id,

View File

@ -78,7 +78,7 @@ impl FromXml for X {
loop { loop {
(namespace, event) = yield; (namespace, event) = yield;
match event { match event {
Event::Start(bytes) => { Event::Start(_) => {
// start of <field> // start of <field>
let mut values = vec![]; let mut values = vec![];
loop { loop {