mirror of https://github.com/aya-rs/aya
aya: appease new nightly clippy lints
``` error: unnecessary use of `get("foo").is_some()` --> aya-obj/src/obj.rs:1690:26 | 1690 | assert!(obj.maps.get("foo").is_some()); | ^^^^^^^^^^^^^^^^^^^^ help: replace it with: `contains_key("foo")` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_get_then_check note: the lint level is defined here --> aya-obj/src/lib.rs:68:9 | 68 | #![deny(clippy::all, missing_docs)] | ^^^^^^^^^^^ = note: `#[deny(clippy::unnecessary_get_then_check)]` implied by `#[deny(clippy::all)]` error: unnecessary use of `get("foo").is_some()` --> aya-obj/src/obj.rs:1777:26 | 1777 | assert!(obj.maps.get("foo").is_some()); | ^^^^^^^^^^^^^^^^^^^^ help: replace it with: `contains_key("foo")` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_get_then_check error: unnecessary use of `get("bar").is_some()` --> aya-obj/src/obj.rs:1778:26 | 1778 | assert!(obj.maps.get("bar").is_some()); | ^^^^^^^^^^^^^^^^^^^^ help: replace it with: `contains_key("bar")` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_get_then_check error: unnecessary use of `get("baz").is_some()` --> aya-obj/src/obj.rs:1779:26 | 1779 | assert!(obj.maps.get("baz").is_some()); | ^^^^^^^^^^^^^^^^^^^^ help: replace it with: `contains_key("baz")` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_get_then_check error: unnecessary use of `get(".bss").is_some()` --> aya-obj/src/obj.rs:1799:26 | 1799 | assert!(obj.maps.get(".bss").is_some()); | ^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `contains_key(".bss")` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_get_then_check error: unnecessary use of `get(".rodata").is_some()` --> aya-obj/src/obj.rs:1810:26 | 1810 | assert!(obj.maps.get(".rodata").is_some()); | ^^^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `contains_key(".rodata")` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_get_then_check error: unnecessary use of `get(".rodata.boo").is_some()` --> aya-obj/src/obj.rs:1821:26 | 1821 | assert!(obj.maps.get(".rodata.boo").is_some()); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `contains_key(".rodata.boo")` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_get_then_check error: unnecessary use of `get(".data").is_some()` --> aya-obj/src/obj.rs:1832:26 | 1832 | assert!(obj.maps.get(".data").is_some()); | ^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `contains_key(".data")` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_get_then_check error: unnecessary use of `get(".data.boo").is_some()` --> aya-obj/src/obj.rs:1843:26 | 1843 | assert!(obj.maps.get(".data.boo").is_some()); | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `contains_key(".data.boo")` ```pull/892/head
parent
499c6bf8d1
commit
3369169aac
Loading…
Reference in New Issue