about summary refs log tree commit diff
path: root/clippy_lints/src/methods/expect_fun_call.rs
diff options
context:
space:
mode:
authorCameron Steffen <cam.steffen94@gmail.com>2021-03-16 11:06:34 -0500
committerCameron Steffen <cam.steffen94@gmail.com>2021-03-17 09:13:52 -0500
commit0743e841f07b7c41f65187fbf71f90bb5dc71982 (patch)
tree3867dad9fc14b36e76bf11a3312947603a7df066 /clippy_lints/src/methods/expect_fun_call.rs
parent8af28840d2b493897a54eb9a21e155c09e38f10f (diff)
downloadrust-0743e841f07b7c41f65187fbf71f90bb5dc71982.tar.gz
rust-0743e841f07b7c41f65187fbf71f90bb5dc71982.zip
Don't re-export clippy_utils::*
Diffstat (limited to 'clippy_lints/src/methods/expect_fun_call.rs')
-rw-r--r--clippy_lints/src/methods/expect_fun_call.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/methods/expect_fun_call.rs b/clippy_lints/src/methods/expect_fun_call.rs
index 1c673c11d65..e7bffa66b3f 100644
--- a/clippy_lints/src/methods/expect_fun_call.rs
+++ b/clippy_lints/src/methods/expect_fun_call.rs
@@ -1,5 +1,5 @@
-use crate::utils::is_expn_of;
 use clippy_utils::diagnostics::span_lint_and_sugg;
+use clippy_utils::is_expn_of;
 use clippy_utils::source::{snippet, snippet_with_applicability};
 use clippy_utils::ty::is_type_diagnostic_item;
 use if_chain::if_chain;