Skip to content

Commit ebbc8c7

Browse files
committed
Merged
2 parents 5657dfb + d885e3a commit ebbc8c7

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,6 @@ All notable changes to this project will be documented in this file.
10481048
[`unused_label`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_label
10491049
[`unused_unit`]: https://rust-lang.github.io/rust-clippy/master/index.html#unused_unit
10501050
[`use_debug`]: https://rust-lang.github.io/rust-clippy/master/index.html#use_debug
1051-
[`use_last`]: https://rust-lang.github.io/rust-clippy/master/index.html#use_last
10521051
[`use_self`]: https://rust-lang.github.io/rust-clippy/master/index.html#use_self
10531052
[`used_underscore_binding`]: https://rust-lang.github.io/rust-clippy/master/index.html#used_underscore_binding
10541053
[`useless_asref`]: https://rust-lang.github.io/rust-clippy/master/index.html#useless_asref

clippy_lints/src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,6 @@ pub mod unsafe_removed_from_name;
243243
pub mod unused_io_amount;
244244
pub mod unused_label;
245245
pub mod unwrap;
246-
pub mod use_last;
247246
pub mod use_self;
248247
pub mod vec;
249248
pub mod wildcard_dependencies;
@@ -846,7 +845,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
846845
unsafe_removed_from_name::UNSAFE_REMOVED_FROM_NAME,
847846
unused_io_amount::UNUSED_IO_AMOUNT,
848847
unused_label::UNUSED_LABEL,
849-
use_last::USE_LAST,
850848
vec::USELESS_VEC,
851849
write::PRINTLN_EMPTY_STRING,
852850
write::PRINT_LITERAL,
@@ -1010,7 +1008,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
10101008
types::UNNECESSARY_CAST,
10111009
types::VEC_BOX,
10121010
unused_label::UNUSED_LABEL,
1013-
use_last::USE_LAST,
10141011
zero_div_zero::ZERO_DIVIDED_BY_ZERO,
10151012
]);
10161013

0 commit comments

Comments
 (0)