summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index b6e9f06..9424819 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -17,7 +17,6 @@ impl Future for Delay {
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<&'static str> {
if Instant::now() >= self.when {
- println!("Hello world");
Poll::Ready("done")
} else {
// Ignore this line for now.