From e1db4ad839e780775085582fd9d31879cd75c8d3 Mon Sep 17 00:00:00 2001 From: Kenny Kerr Date: Wed, 11 Dec 2024 13:23:28 -0600 Subject: [PATCH] fmt --- crates/libs/bindgen/src/io.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/libs/bindgen/src/io.rs b/crates/libs/bindgen/src/io.rs index 531392b08c..3f51a455bc 100644 --- a/crates/libs/bindgen/src/io.rs +++ b/crates/libs/bindgen/src/io.rs @@ -7,7 +7,6 @@ pub fn read_file_lines(path: &str) -> Vec { }; let file = std::io::BufReader::new(file); - let mut lines = vec![]; for line in file.lines() {