about summary refs log tree commit diff
path: root/clippy_lints/src/disallowed_methods.rs
diff options
context:
space:
mode:
Diffstat (limited to 'clippy_lints/src/disallowed_methods.rs')
-rw-r--r--clippy_lints/src/disallowed_methods.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/clippy_lints/src/disallowed_methods.rs b/clippy_lints/src/disallowed_methods.rs
index 1a381f92c03..6ac85606d9c 100644
--- a/clippy_lints/src/disallowed_methods.rs
+++ b/clippy_lints/src/disallowed_methods.rs
@@ -94,9 +94,8 @@ impl<'tcx> LateLintPass<'tcx> for DisallowedMethods {
         } else {
             path_def_id(cx, expr)
         };
-        let def_id = match uncalled_path.or_else(|| fn_def_id(cx, expr)) {
-            Some(def_id) => def_id,
-            None => return,
+        let Some(def_id) = uncalled_path.or_else(|| fn_def_id(cx, expr)) else {
+            return
         };
         let conf = match self.disallowed.get(&def_id) {
             Some(&index) => &self.conf_disallowed[index],