Skip to content

Commit

Permalink
remove unused imports from examples
Browse files Browse the repository at this point in the history
  • Loading branch information
bonifaido committed Oct 17, 2022
1 parent 1725508 commit b8a8abe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/queue_consume.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ extern crate env_logger;
extern crate uuid;
extern crate zookeeper;

use std::{env, sync::Arc, thread, time::Duration};
use std::{env, sync::Arc, time::Duration};

use zookeeper::{recipes::queue::ZkQueue, WatchedEvent, Watcher, ZooKeeper};

Expand Down
2 changes: 1 addition & 1 deletion examples/queue_producer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ extern crate env_logger;
extern crate uuid;
extern crate zookeeper;

use std::{env, sync::Arc, thread, time::Duration};
use std::{env, sync::Arc, time::Duration};

use zookeeper::{recipes::queue::ZkQueue, WatchedEvent, Watcher, ZooKeeper};

Expand Down

0 comments on commit b8a8abe

Please sign in to comment.