remove accidental debug statement

This commit is contained in:
Matthew Ryan Dillon 2024-08-22 06:20:53 -04:00
parent 76d4ddd7db
commit 8c8ebb51b7

View file

@ -40,7 +40,6 @@ fn main() {
fn process_text(mut state: ResMut<State>) {
if state.needs_update {
println!("updating sort");
let mut arr = state.input_value.lines().collect::<Vec<_>>();
arr.sort_by(|&a, &b| vsort::compare(a, b));
state.output_value = arr.join(LINE_ENDING);