summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2019-12-23 14:03:15 +0100
committerMatthias Beyer <mail@beyermatthias.de>2019-12-23 15:43:48 +0100
commit1ff946e16e1e5be0a45df377d20cd7d4a9d21d17 (patch)
tree3baef75a56bcf1d9049b457bfc6138dc5a0162db
parentc5f05bc5fb56bad6aa5932dce7ddf9071fd65cd9 (diff)
Remove unnecessary clone() call
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--bin/domain/imag-timetrack/src/list.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/domain/imag-timetrack/src/list.rs b/bin/domain/imag-timetrack/src/list.rs
index b44f7ed0..5f91353b 100644
--- a/bin/domain/imag-timetrack/src/list.rs
+++ b/bin/domain/imag-timetrack/src/list.rs
@@ -63,7 +63,7 @@ pub fn list(rt: &Runtime) -> Result<()> {
let list_not_ended = cmd.is_present("list-not-ended");
let show_duration = cmd.is_present("show-duration");
- list_impl(rt, start.clone(), end.clone(), list_not_ended, show_duration)
+ list_impl(rt, start, end, list_not_ended, show_duration)
}
pub fn list_impl(rt: &Runtime,