Fix unused variable warning in dummy platform

This commit is contained in:
Héctor Ramón Jiménez 2022-01-27 16:50:52 +07:00
parent 93c7e17090
commit ae906dd623
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

View file

@ -17,7 +17,7 @@ impl ClipboardProvider for Dummy {
fn write(
&mut self,
contents: String,
_contents: String,
) -> Result<(), Box<dyn std::error::Error>> {
Err(Box::new(Error::Unimplemented))
}