summaryrefslogtreecommitdiffstats
path: root/src/tree_build
diff options
context:
space:
mode:
Diffstat (limited to 'src/tree_build')
-rw-r--r--src/tree_build/bid.rs8
-rw-r--r--src/tree_build/builder.rs8
2 files changed, 8 insertions, 8 deletions
diff --git a/src/tree_build/bid.rs b/src/tree_build/bid.rs
index e1ebd98..e053af9 100644
--- a/src/tree_build/bid.rs
+++ b/src/tree_build/bid.rs
@@ -1,11 +1,7 @@
use {
+ super::bline::BLine,
id_arena::Id,
- super::{
- bline::BLine,
- },
- std::{
- cmp::{self, Ordering},
- },
+ std::cmp::{self, Ordering},
};
pub type BId = Id<BLine>;
diff --git a/src/tree_build/builder.rs b/src/tree_build/builder.rs
index caf5265..9f04494 100644
--- a/src/tree_build/builder.rs
+++ b/src/tree_build/builder.rs
@@ -3,7 +3,7 @@ use {
errors::TreeBuildError,
flat_tree::{Tree, TreeLine},
task_sync::TaskLifetime,
- tree_options::{TreeOptions},
+ tree_options::TreeOptions,
},
id_arena::Arena,
std::{
@@ -189,7 +189,11 @@ impl TreeBuilder {
/// first step of the build: we explore the directories and gather lines.
/// If there's no search pattern we stop when we have enough lines to fill the screen.
/// If there's a pattern, we try to gather more lines that will be sorted afterwards.
- fn gather_lines(&mut self, task_lifetime: &TaskLifetime, total_search: bool) -> Option<Vec<BId>> {
+ fn gather_lines(
+ &mut self,
+ task_lifetime: &TaskLifetime,
+ total_search: bool,
+ ) -> Option<Vec<BId>> {
let start = Instant::now();
let mut out_blines: Vec<BId> = Vec::new(); // the blines we want to display
let optimal_size = self