Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
verification: fix unnecessary lazy evaluations findings
Clippy is flagging a couple instances of this: ``` error: unnecessary closure used with `bool::then` --> src/verification/android.rs:251:18 | 251 | .map(|o| (!o.is_null()).then(|| o)) | ^^^^^^^^^^^^^^^---------- | | | help: use `then_some(..)` instead: `then_some(o)` | ``` This commit applies the recommended fix.
- Loading branch information