From 8792fc0bb731e71b4552a90449f3c38a858b50b1 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 5 Feb 2024 00:26:47 +0100 Subject: Fix unused import in `game_of_life` example --- examples/game_of_life/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/game_of_life/src/main.rs b/examples/game_of_life/src/main.rs index 829b4900..9cbb7fff 100644 --- a/examples/game_of_life/src/main.rs +++ b/examples/game_of_life/src/main.rs @@ -15,7 +15,7 @@ use iced::window; use iced::{ Alignment, Application, Command, Element, Length, Settings, Subscription, }; -use std::time::{Duration, Instant}; +use std::time::Duration; pub fn main() -> iced::Result { tracing_subscriber::fmt::init(); -- cgit