[Auto] lib/etc/util: 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:52:06 +02:00 committed by Matthias Beyer
parent bde29b7242
commit 670a0ff6d7
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ use chrono::format::ParseError;
pub const NAIVE_DATE_STRING_FORMAT : &str = "%Y-%m-%d";
pub fn date_to_string(ndt: &NaiveDate) -> String {
pub fn date_to_string(ndt: NaiveDate) -> String {
ndt.format(NAIVE_DATE_STRING_FORMAT).to_string()
}

View file

@ -84,7 +84,7 @@ impl IntoKeyValue<String, String> for String {
};
key.and_then(|k| {
value.and_then(|v| Some(KeyValue::new(String::from(k.as_str()), String::from(v))))
value.map(|v| KeyValue::new(String::from(k.as_str()), String::from(v)))
})
}