diff options
| -rw-r--r-- | src/main.rs | 1 |
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. |
