File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -339,7 +339,7 @@ impl Directory {
339339 }
340340
341341 /// Get the offset ranges of the chunks.
342- fn chunks_as_ranges ( self : & Self , chunks : & Vec < u32 > , stream_end : usize ) -> Vec < Range < usize > > {
342+ fn chunks_as_ranges ( & self , chunks : & Vec < u32 > , stream_end : usize ) -> Vec < Range < usize > > {
343343 // NOTE: This is the end of the directory.
344344 // me_cleaner uses the end of the ME region.
345345 let dir_end = self . offset + self . size ;
@@ -430,7 +430,7 @@ impl Directory {
430430
431431impl Removables for Directory {
432432 /// Removable ranges relative to the start of the Directory
433- fn removables ( self : & Self , retention_list : & Vec < String > ) -> Vec < Range < usize > > {
433+ fn removables ( & self , retention_list : & Vec < String > ) -> Vec < Range < usize > > {
434434 use log:: { debug, info, warn} ;
435435 let debug = false ;
436436 let mut removables = vec ! [ ] ;
You can’t perform that action at this time.
0 commit comments