Address Clippy lints
This commit is contained in:
parent
e053e25d2c
commit
15f794b7a8
43 changed files with 147 additions and 172 deletions
|
|
@ -146,7 +146,7 @@ where
|
|||
content: impl Into<Element<'a, Message, Renderer>>,
|
||||
) -> Self {
|
||||
let element = content.into();
|
||||
let _ = state.diff(&element);
|
||||
state.diff(&element);
|
||||
|
||||
Self { state, element }
|
||||
}
|
||||
|
|
|
|||
|
|
@ -143,7 +143,7 @@ where
|
|||
self.padding,
|
||||
self.text_size,
|
||||
&self.font,
|
||||
self.placeholder.as_ref().map(String::as_str),
|
||||
self.placeholder.as_deref(),
|
||||
&self.options,
|
||||
)
|
||||
}
|
||||
|
|
@ -199,7 +199,7 @@ where
|
|||
self.padding,
|
||||
self.text_size,
|
||||
&self.font,
|
||||
self.placeholder.as_ref().map(String::as_str),
|
||||
self.placeholder.as_deref(),
|
||||
self.selected.as_ref(),
|
||||
self.style,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue