[No-auto] lib/domain/bookmark: Fix Clippy warnings
Signed-off-by: flip1995 <hello@philkrones.com> Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
b2997517bb
commit
2ac2a86c7a
1 changed files with 1 additions and 2 deletions
|
@ -119,7 +119,6 @@ impl BookmarkCollection for Entry {
|
||||||
pub mod iter {
|
pub mod iter {
|
||||||
use crate::link::Link;
|
use crate::link::Link;
|
||||||
use failure::Fallible as Result;
|
use failure::Fallible as Result;
|
||||||
use failure::Error;
|
|
||||||
use regex::Regex;
|
use regex::Regex;
|
||||||
|
|
||||||
use libimagentryurl::iter::UrlIter;
|
use libimagentryurl::iter::UrlIter;
|
||||||
|
@ -162,7 +161,7 @@ pub mod iter {
|
||||||
loop {
|
loop {
|
||||||
let n = match self.0.next() {
|
let n = match self.0.next() {
|
||||||
Some(Ok(n)) => n,
|
Some(Ok(n)) => n,
|
||||||
Some(Err(e)) => return Some(Err(Error::from(e))),
|
Some(Err(e)) => return Some(Err(e)),
|
||||||
None => return None,
|
None => return None,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue