allow imaginary times because f u customer right

This commit is contained in:
Bel LaPointe
2024-11-06 15:36:53 -07:00
parent d9f84022a0
commit 181cfc1454

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 {