about summary refs log tree commit diff
path: root/clippy_lints/src/methods
diff options
context:
space:
mode:
authorclubby789 <jamie@hill-daniel.co.uk>2023-03-14 17:18:26 +0000
committerclubby789 <jamie@hill-daniel.co.uk>2023-03-14 17:18:26 +0000
commitf2eddc5924756bbef97e0a02f5120139ca74ecb6 (patch)
treec20ac7b3514808d9bf73b6771245012b208f330b /clippy_lints/src/methods
parent491f63214ad557f1617d11b05b1e2fb4666bba85 (diff)
downloadrust-f2eddc5924756bbef97e0a02f5120139ca74ecb6.tar.gz
rust-f2eddc5924756bbef97e0a02f5120139ca74ecb6.zip
Remove box expressions from HIR
Diffstat (limited to 'clippy_lints/src/methods')
-rw-r--r--clippy_lints/src/methods/unnecessary_sort_by.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/clippy_lints/src/methods/unnecessary_sort_by.rs b/clippy_lints/src/methods/unnecessary_sort_by.rs
index 5201da52bbf..67618f7038a 100644
--- a/clippy_lints/src/methods/unnecessary_sort_by.rs
+++ b/clippy_lints/src/methods/unnecessary_sort_by.rs
@@ -33,10 +33,6 @@ struct SortByKeyDetection {
 /// contains a and the other replaces it with b)
 fn mirrored_exprs(a_expr: &Expr<'_>, a_ident: &Ident, b_expr: &Expr<'_>, b_ident: &Ident) -> bool {
     match (&a_expr.kind, &b_expr.kind) {
-        // Two boxes with mirrored contents
-        (ExprKind::Box(left_expr), ExprKind::Box(right_expr)) => {
-            mirrored_exprs(left_expr, a_ident, right_expr, b_ident)
-        },
         // Two arrays with mirrored contents
         (ExprKind::Array(left_exprs), ExprKind::Array(right_exprs)) => {
             iter::zip(*left_exprs, *right_exprs).all(|(left, right)| mirrored_exprs(left, a_ident, right, b_ident))