Remove unnecessary output.

This commit is contained in:
Yifan Wu 2023-02-01 21:17:43 +08:00
parent 8cfd457341
commit 191eb13c21
2 changed files with 4 additions and 4 deletions

View file

@ -85,9 +85,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(())
}