summaryrefslogtreecommitdiffstats
path: root/examples/echo-udp.rs
diff options
context:
space:
mode:
authorThomas de Zeeuw <thomasdezeeuw@gmail.com>2017-12-01 22:34:03 +0100
committerAlex Crichton <alex@alexcrichton.com>2017-12-01 15:34:03 -0600
commit0b54557796cee1c1d3a55ca29be982d24e5b3f3b (patch)
treece4862151016bd0dbe2f7addafc35be8fb18b48e /examples/echo-udp.rs
parent31f8cb9467c14402d7fb35359bab1028d6445d12 (diff)
Remove unused code (#44)
* remove unused #[macro_use] and #[allow(unused_macros)] * remove unused FnBox trait * remove unused temporary variable * remove Evented trait requirement to implement Debug
Diffstat (limited to 'examples/echo-udp.rs')
-rw-r--r--examples/echo-udp.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/echo-udp.rs b/examples/echo-udp.rs
index 9c6c9e27..63171207 100644
--- a/examples/echo-udp.rs
+++ b/examples/echo-udp.rs
@@ -11,7 +11,6 @@
//! Each line you type in to the `nc` terminal should be echo'd back to you!
extern crate futures;
-#[macro_use]
extern crate tokio;
#[macro_use]
extern crate tokio_io;