Remove unused imports

This commit is contained in:
Matthias Beyer 2018-01-04 19:35:35 +01:00
parent 02f38fb209
commit 01bd020419
3 changed files with 1 additions and 4 deletions

View file

@ -20,7 +20,7 @@
extern crate notify_rust; extern crate notify_rust;
#[macro_use] extern crate error_chain; #[macro_use] extern crate error_chain;
#[macro_use] extern crate libimagerror; extern crate libimagerror;
pub mod error; pub mod error;
pub mod notificator; pub mod notificator;

View file

@ -18,7 +18,6 @@
// //
use error::Result; use error::Result;
use error::ResultExt;
/// A Notificator provides a function that can be called to notify about a certain object. /// A Notificator provides a function that can be called to notify about a certain object.
/// ///

View file

@ -105,9 +105,7 @@ pub mod ok {
use notificator::default::Notification; use notificator::default::Notification;
use notificator::Notificator; use notificator::Notificator;
use error::NotificationErrorKind as NEK;
use error::Result; use error::Result;
use error::ResultExt;
#[derive(Debug, Default, Clone)] #[derive(Debug, Default, Clone)]
pub struct OkNotification(Notification); pub struct OkNotification(Notification);