From a8e13a61d7c1324dfca393a01369d75530f42e6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Mon, 7 Sep 2020 11:40:20 +0200 Subject: [PATCH] xmpp: Remove unused import Element MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- xmpp/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmpp/src/lib.rs b/xmpp/src/lib.rs index 799fd019..758cda5b 100644 --- a/xmpp/src/lib.rs +++ b/xmpp/src/lib.rs @@ -27,7 +27,7 @@ use xmpp_parsers::{ pubsub::pubsub::{Items, PubSub}, roster::{Item as RosterItem, Roster}, stanza_error::{DefinedCondition, ErrorType, StanzaError}, - BareJid, Element, FullJid, Jid, + BareJid, FullJid, Jid, }; #[macro_use] extern crate log;