From 6600683567610aafc2a8d0439ee7a079f202c184 Mon Sep 17 00:00:00 2001 From: ahuoguo Date: Thu, 20 Jul 2023 00:26:02 -0400 Subject: [PATCH] rm redundant comment --- source/error_report/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/source/error_report/src/main.rs b/source/error_report/src/main.rs index 3691d703da..3fdd59a32f 100644 --- a/source/error_report/src/main.rs +++ b/source/error_report/src/main.rs @@ -294,7 +294,6 @@ pub fn zip_setup(dep_file_name: String) -> Result { // parse the .d file and returns a vector of files names required to generate the crate fn get_dependencies(dep_file_path: &std::path::Path) -> Result, String> { - // update to better error message let file = File::open(dep_file_path) .map_err(|x| format!("{}, dependency file name: {:?}", x, dep_file_path))?; let mut reader = BufReader::new(file);