Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clear trivial clippy warnings #615

Closed
wants to merge 22 commits into from

Conversation

tcharding
Copy link
Member

@tcharding tcharding commented Oct 12, 2023

Hack like I'm a week one contributor again, remove a bunch of trivial lint warnings.

There are a bunch more still, draft till I get them all.

Clippy warns:

 warning: consider choosing a more descriptive name

Cause by an accidental double underscore, remove one of them.
Clippy warns:

  warning: this expression creates a reference which is immediately
  dereferenced by the compiler

Remove the explicit reference.
Clippy warns:

  warning: this `.into_iter()` call is equivalent to `.iter()` and will
  not consume the `Vec`

As suggested, use `iter` instead of `into_iter`
Clippy emits:

 warning: explicit call to `.into_iter()` in function argument accepting
 `IntoIterator`

Remove the unnecessary calls to `into_iter()`.
Clippy emits:

 warning: this lifetime isn't used in the impl

As suggested, remove the unneeded lifetime.
Clippy emits:

 warning: redundant pattern matching, consider using `is_some()`

As suggested, use `is_some()`.
Clippy emits:

 warning: called `is_none()` after searching an `Iterator` with `find`

As suggested, use `any` instead.
@tcharding tcharding marked this pull request as draft October 12, 2023 04:19
Clippy emits:

 warning: you seem to be trying to use `match` for destructuring a
 single pattern. Consider using `if let`

As suggested, use `if let`.
Clippy emits:

 warning: iterating on a map's keys

As suggested, use `into_keys`.
Clippy emits:

 warning: method `add` can be confused for the standard trait method
 `std::ops::Add::add`

Just shoosh clippy.
Clippy emits:

 warning: replacing a value of type `T` with `T::default()` is better
 expressed using `std::mem::take`

As suggested, use `mem::take`.
Clippy emits:

 warning: digits grouped inconsistently by underscores

Add the missing underscore.
Clippy emits:

 warning: items were found after the testing module

While trivial where prelude is placed, clippy does seem correct.
Clippy emits:

 warning: the borrowed expression implements the required traits

As suggested remove the reference.
Clippy emits:

 warning: useless use of `vec!`

As suggested, use a slice instead.
Clippy emits:

 warning: redundant field names in struct initialization

As suggested, remove redundant field name.
Clippy emits:

 warning: redundant closure

As suggested, remove the redundant closure.
Clippy emits:n

 warning: using `clone` on type `Hash` which implements the `Copy` trait

Remove the unnecessary call to clone.
Clippy emits:

 warning: the loop variable `i` is only used to index `keys`

The code is clear as is, ignore this warning.
Clippy emits:

 warning: the loop variable `idx` is only used to index
 `serialized_keys`

Remove the loop variable, be more Rusty.
Clippy emits:

 field assignment outside of initializer for an instance created with
 Default::default()

As suggested, use `..Default` to initialize the `TxIn`. While we are at
it remove unnecessary comment (looks like it originated as commented out
code).
apoelstra added a commit that referenced this pull request Nov 7, 2023
7eccfdb clippy: whitelist iter_kv lint since it is broken (Andrew Poelstra)
6de288f cargo fmt (Andrew Poelstra)
f9c4e53 clippy: fix PartialOrd impl on an Ord type (Andrew Poelstra)
1f8dfe2 clippy: clean up iterator (Andrew Poelstra)
5ab7afe clippy: whitelist inapplicable lints (Andrew Poelstra)
2237906 clippy: use try_fold in place of fold in several places (Andrew Poelstra)
4f7782f clippy: minor things (Andrew Poelstra)
a61f71a clippy: eliminate a bunch of redundant `into_iter` calls (Andrew Poelstra)

Pull request description:

  Supercedes #615.

ACKs for top commit:
  tcharding:
    ACK 7eccfdb
  sanket1729:
    ACK 7eccfdb

Tree-SHA512: ea4f14f754b07c9ae127684e6ca1d9f121361a7be617d45a19af0269af735d2f420f59abdf15b943052b34cc9afba31cddc87d75a86694f8eefa0d672d4b031b
@tcharding
Copy link
Member Author

Done fresh in #670

@tcharding tcharding closed this Mar 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant