mirror of
https://github.com/Llewellynvdm/exa.git
synced 2025-04-03 22:31:49 +00:00
Lifetime-eliding action!
This commit is contained in:
parent
c938c699ec
commit
07ff10e550
@ -121,14 +121,14 @@ impl Options {
|
|||||||
}, path_strs))
|
}, path_strs))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn transform_files<'a>(&self, files: &mut Vec<File<'a>>) {
|
pub fn transform_files(&self, files: &mut Vec<File>) {
|
||||||
self.filter.transform_files(files)
|
self.filter.transform_files(files)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl FileFilter {
|
impl FileFilter {
|
||||||
/// Transform the files (sorting, reversing, filtering) before listing them.
|
/// Transform the files (sorting, reversing, filtering) before listing them.
|
||||||
pub fn transform_files<'a>(&self, files: &mut Vec<File<'a>>) {
|
pub fn transform_files(&self, files: &mut Vec<File>) {
|
||||||
|
|
||||||
if !self.show_invisibles {
|
if !self.show_invisibles {
|
||||||
files.retain(|f| !f.is_dotfile());
|
files.retain(|f| !f.is_dotfile());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user