[No-auto] bin/domain/diary: Fix Clippy warnings

Signed-off-by: flip1995 <hello@philkrones.com>
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
flip1995 2019-08-27 10:05:34 +02:00 committed by Matthias Beyer
parent 397bcd43d0
commit 1bb6f452e9
2 changed files with 20 additions and 22 deletions

View File

@ -126,7 +126,7 @@ fn create_id_from_clispec(create: &ArgMatches, timed_type: Timed) -> NaiveDateTi
.map_err(|_| warn!("Could not parse minute: '{}'", s))
.ok()
})
.unwrap_or(ndt.minute());
.unwrap_or_else(|| ndt.minute());
ndt.with_minute(min)
.unwrap_or_else(|| {
@ -146,7 +146,7 @@ fn create_id_from_clispec(create: &ArgMatches, timed_type: Timed) -> NaiveDateTi
.map_err(|_| warn!("Could not parse minute: '{}'", s))
.ok()
})
.unwrap_or(ndt.minute());
.unwrap_or_else(|| ndt.minute());
let sec = create
.value_of("second")
@ -156,7 +156,7 @@ fn create_id_from_clispec(create: &ArgMatches, timed_type: Timed) -> NaiveDateTi
.map_err(|_| warn!("Could not parse second: '{}'", s))
.ok()
})
.unwrap_or(ndt.second());
.unwrap_or_else(|| ndt.second());
ndt.with_minute(min)
.unwrap_or_else(|| {

View File

@ -79,9 +79,7 @@ fn main() {
"Personal Diary/Diaries",
ui::build_ui);
rt.cli()
.subcommand_name()
.map(|name| {
if let Some(name) = rt.cli().subcommand_name() {
debug!("Call {}", name);
match name {
"diaries" => diaries(&rt),
@ -97,7 +95,7 @@ fn main() {
.map(::std::process::exit);
},
}
});
}
}
fn diaries(rt: &Runtime) {