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);
}
IqClientBody::MessageArchiveRequest(request) => {
IqClientBody::MessageArchiveRequest(_) => {
let response = Iq {
from: iq.to,
id: iq.id,

View File

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