Fix Clippy lints: needless_return

This commit is contained in:
Brandon W Maister 2017-06-23 14:08:52 -05:00
parent 853154b239
commit fac6ff44c9
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ impl<'a> Iterator for StrftimeItems<'a> {
match self.remainder.chars().next() {
// we are done
None => return None,
None => None,
// the next item is a specifier
Some('%') => {