Skip to content

Commit ef1750e

Browse files
committed
fix update_lints
1 parent 33a51a9 commit ef1750e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6030,8 +6030,8 @@ Released 2018-09-13
60306030
[`unnecessary_lazy_evaluations`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_lazy_evaluations
60316031
[`unnecessary_literal_unwrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_literal_unwrap
60326032
[`unnecessary_map_on_constructor`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_on_constructor
6033-
[`unnecessary_min_or_max`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_min_or_max
60346033
[`unnecessary_map_or`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
6034+
[`unnecessary_min_or_max`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_min_or_max
60356035
[`unnecessary_mut_passed`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_mut_passed
60366036
[`unnecessary_operation`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_operation
60376037
[`unnecessary_owned_empty_strings`]: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_owned_empty_strings

clippy_lints/src/declared_lints.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -474,9 +474,9 @@ pub static LINTS: &[&crate::LintInfo] = &[
474474
crate::methods::UNNECESSARY_JOIN_INFO,
475475
crate::methods::UNNECESSARY_LAZY_EVALUATIONS_INFO,
476476
crate::methods::UNNECESSARY_LITERAL_UNWRAP_INFO,
477+
crate::methods::UNNECESSARY_MAP_OR_INFO,
477478
crate::methods::UNNECESSARY_MIN_OR_MAX_INFO,
478479
crate::methods::UNNECESSARY_RESULT_MAP_OR_ELSE_INFO,
479-
crate::methods::UNNECESSARY_MAP_OR_INFO,
480480
crate::methods::UNNECESSARY_SORT_BY_INFO,
481481
crate::methods::UNNECESSARY_TO_OWNED_INFO,
482482
crate::methods::UNWRAP_OR_DEFAULT_INFO,

0 commit comments

Comments
 (0)