summaryrefslogtreecommitdiffstats
path: root/CLI/rust/src/game_of_life
diff options
context:
space:
mode:
authora14m <[email protected]>2021-04-08 03:35:57 +0200
committera14m <[email protected]>2021-04-08 03:35:57 +0200
commite240de9160319f60036845854fc4887f8ea659eb (patch)
treeb41e11562a825a5c90ad9a74d6b042e8c4067eb9 /CLI/rust/src/game_of_life
parenta2d138bdd8b119944fef7edcd51335e8a596222e (diff)
Remove unneeded debugging print
Diffstat (limited to 'CLI/rust/src/game_of_life')
-rw-r--r--CLI/rust/src/game_of_life/generators/input.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/CLI/rust/src/game_of_life/generators/input.rs b/CLI/rust/src/game_of_life/generators/input.rs
index 3b709e0..c140e89 100644
--- a/CLI/rust/src/game_of_life/generators/input.rs
+++ b/CLI/rust/src/game_of_life/generators/input.rs
@@ -158,7 +158,6 @@ fn generate_url_data(opts: Opts) -> Result<Universe, Error> {
}
};
};
- println!("{}", data);
Ok(populate(opts, data))
}