Fix clippy: Remove unnecessary closure
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
b8a98da958
commit
fa72eb1bd4
|
@ -110,7 +110,7 @@ impl<'a> AppBuilder<'a> {
|
||||||
Ok(App {
|
Ok(App {
|
||||||
client_name: self
|
client_name: self
|
||||||
.client_name
|
.client_name
|
||||||
.ok_or_else(|| Error::MissingField("client_name"))?
|
.ok_or(Error::MissingField("client_name"))?
|
||||||
.into(),
|
.into(),
|
||||||
redirect_uris: self
|
redirect_uris: self
|
||||||
.redirect_uris
|
.redirect_uris
|
||||||
|
|
Loading…
Reference in New Issue