Skip to content

Commit

Permalink
rm redundant comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuoguo committed Jul 20, 2023
1 parent f1cdc04 commit 6600683
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion source/error_report/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,6 @@ pub fn zip_setup(dep_file_name: String) -> Result<String, String> {

// 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<Vec<String>, 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);
Expand Down

0 comments on commit 6600683

Please sign in to comment.