1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 13:23:34 +00:00

Fix Clippy 1.88 warnings (#15396)

* Fix Clippy 1.88 warnings

* Fmt
This commit is contained in:
Daniel García
2025-07-01 22:36:18 +02:00
committed by GitHub
parent 3f7cb674af
commit 616ac9a3c8
6 changed files with 15 additions and 33 deletions

View File

@@ -80,8 +80,7 @@ mod objc {
Ok(value) => value,
Err(e) => {
println!(
"Error: Failed to convert ObjCString to Rust string during commandReturn: {}",
e
"Error: Failed to convert ObjCString to Rust string during commandReturn: {e}"
);
return false;
@@ -91,10 +90,7 @@ mod objc {
match context.send(value) {
Ok(_) => 0,
Err(e) => {
println!(
"Error: Failed to return ObjCString from ObjC code to Rust code: {}",
e
);
println!("Error: Failed to return ObjCString from ObjC code to Rust code: {e}");
return false;
}