Remove unused imports
This commit is contained in:
parent
02f38fb209
commit
01bd020419
3 changed files with 1 additions and 4 deletions
|
@ -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;
|
||||||
|
|
|
@ -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.
|
||||||
///
|
///
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue