File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -33,8 +33,6 @@ pub struct DirEntry {
33
33
pub struct Directory {
34
34
/// The starting point of the directory listing.
35
35
pub ( crate ) cluster : Cluster ,
36
- /// Dir Entry of this directory, None for the root directory
37
- pub ( crate ) entry : Option < DirEntry > ,
38
36
}
39
37
40
38
impl DirEntry {
Original file line number Diff line number Diff line change @@ -172,7 +172,6 @@ where
172
172
self . open_dirs [ open_dirs_row] = ( volume. idx , Cluster :: ROOT_DIR ) ;
173
173
Ok ( Directory {
174
174
cluster : Cluster :: ROOT_DIR ,
175
- entry : None ,
176
175
} )
177
176
}
178
177
@@ -217,7 +216,6 @@ where
217
216
self . open_dirs [ open_dirs_row] = ( volume. idx , dir_entry. cluster ) ;
218
217
Ok ( Directory {
219
218
cluster : dir_entry. cluster ,
220
- entry : Some ( dir_entry) ,
221
219
} )
222
220
}
223
221
You can’t perform that action at this time.
0 commit comments