summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/game_of_life/src/main.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/game_of_life/src/main.rs b/examples/game_of_life/src/main.rs
index dcf1ced5..ab8b80e4 100644
--- a/examples/game_of_life/src/main.rs
+++ b/examples/game_of_life/src/main.rs
@@ -18,9 +18,7 @@ use preset::Preset;
use std::time::{Duration, Instant};
pub fn main() -> iced::Result {
- env_logger::builder()
- .format_timestamp(None)
- .init();
+ env_logger::builder().format_timestamp(None).init();
GameOfLife::run(Settings {
antialiasing: true,