Remove unnecessary output.

This commit is contained in:
Yifan Wu 2023-02-01 21:15:06 +08:00
parent c1c9b659bf
commit 45f1a957b4
2 changed files with 4 additions and 4 deletions

View file

@ -81,9 +81,9 @@ fn easy_fs_pack() -> std::io::Result<()> {
inode.write_at(0, all_data.as_slice());
}
// list apps
for app in root_inode.ls() {
println!("{}", app);
}
// for app in root_inode.ls() {
// println!("{}", app);
// }
Ok(())
}