Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 0456d74

Browse files
committed
fix: remove Debug
1 parent a39c2d5 commit 0456d74

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

file-explorer/src/main.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ fn App() -> Element {
6363
}
6464

6565

66-
#[derive(Debug)]
6766
struct File {
6867
is_directory: bool,
6968
name: String,
@@ -136,7 +135,6 @@ impl Files {
136135
fn enter_dir(&mut self, dir_id: usize) {
137136
let path = &self.path_names[dir_id];
138137
self.path_stack.push(path.name.to_string());
139-
println!("{:#?}", self.path_stack);
140138
self.reload_path_list();
141139
}
142140

0 commit comments

Comments
 (0)