Remove unneeded clippy allow
authorChris Morgan <me@chrismorgan.info>
committerChris Morgan <me@chrismorgan.info>
I wrote this code in the short window between the lint being added and
being downgraded to pedantic.
src/lib.rs

index 0fc29419faff02434400c3879125f12c00486e28..560a73da42b56e7837cb9e4f1ace597ceff4f5b9 100644 (file)
@@ -405,8 +405,6 @@ impl<'a, A: ?Sized + Downcast, V: IntoBox<A>> Entry<'a, A, V> {
     /// Provides in-place mutable access to an occupied entry before any potential inserts into the
     /// map.
     #[inline]
-    // std::collections::hash_map::Entry::and_modify doesn’t have #[must_use], I’ll follow suit.
-    #[allow(clippy::return_self_not_must_use)]
     pub fn and_modify<F: FnOnce(&mut V)>(self, f: F) -> Self {
         match self {
             Entry::Occupied(mut inner) => {