Skip to content

Commit 328402d

Browse files
committed
Remove use_last
1 parent e27d824 commit 328402d

File tree

4 files changed

+0
-120
lines changed

4 files changed

+0
-120
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
@@ -242,7 +242,6 @@ pub mod unsafe_removed_from_name;
242242
pub mod unused_io_amount;
243243
pub mod unused_label;
244244
pub mod unwrap;
245-
pub mod use_last;
246245
pub mod use_self;
247246
pub mod vec;
248247
pub mod wildcard_dependencies;
@@ -844,7 +843,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
844843
unsafe_removed_from_name::UNSAFE_REMOVED_FROM_NAME,
845844
unused_io_amount::UNUSED_IO_AMOUNT,
846845
unused_label::UNUSED_LABEL,
847-
use_last::USE_LAST,
848846
vec::USELESS_VEC,
849847
write::PRINTLN_EMPTY_STRING,
850848
write::PRINT_LITERAL,
@@ -1008,7 +1006,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
10081006
types::UNNECESSARY_CAST,
10091007
types::VEC_BOX,
10101008
unused_label::UNUSED_LABEL,
1011-
use_last::USE_LAST,
10121009
zero_div_zero::ZERO_DIVIDED_BY_ZERO,
10131010
]);
10141011

clippy_lints/src/use_last.rs

Lines changed: 0 additions & 96 deletions
This file was deleted.

tests/ui/use_last.rs

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)