do not print to stdout

This commit is contained in:
Ishan Jain 2023-11-07 17:30:37 +05:30
parent da50551ed9
commit de6581e72d
Signed by: ishan
GPG Key ID: 0506DB2A1CC75C27

View File

@ -112,8 +112,6 @@ impl HostsFile {
f.write_all(output.join("\n").as_bytes())
.map_err(|e| e.to_string())?;
println!("{}", output.join("\n"));
f.flush().map_err(|e| e.to_string())
}
}