提交 07ff10e5 编写于 作者: B Ben S

Lifetime-eliding action!

上级 c938c699
......@@ -121,14 +121,14 @@ impl Options {
}, 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)
}
}
impl FileFilter {
/// 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 {
files.retain(|f| !f.is_dotfile());
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册