allow imaginary times because f u customer right

main
Bel LaPointe 2024-11-06 15:36:53 -07:00
parent d9f84022a0
commit 181cfc1454
1 changed files with 0 additions and 7 deletions

View File

@ -95,7 +95,6 @@ fn log(f: &String, enabled: &bool, since: &Option<String>, verbose: &bool, preci
let tsheet = load(&f)?;
let tsheet = tsheet.since(since);
let tsheet = tsheet.sorted();
if *verbose {
eprintln!("tsheet = {:?}", &tsheet);
}
@ -329,12 +328,6 @@ impl TSheet {
tag,
));
}
fn sorted(&self) -> TSheet {
let mut result = TSheet{xs: self.xs.clone()};
result.xs.sort();
return result;
}
}
impl X {