about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCameron Steffen <cam.steffen94@gmail.com>2021-04-01 10:24:44 -0500
committerCameron Steffen <cam.steffen94@gmail.com>2021-04-06 11:33:59 -0500
commit79d3082cd779ccae785dbec906005af92ff36b1a (patch)
tree0578e106e9f6b9619f3a44b37eb5ef60835d7d4c
parent1efb5513699c2873c09caf59451628317d03f68b (diff)
downloadrust-79d3082cd779ccae785dbec906005af92ff36b1a.tar.gz
rust-79d3082cd779ccae785dbec906005af92ff36b1a.zip
Remove paths::PATH_BUF
-rw-r--r--clippy_utils/src/paths.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/clippy_utils/src/paths.rs b/clippy_utils/src/paths.rs
index 7c83a9fe4e2..3b4c4070c0e 100644
--- a/clippy_utils/src/paths.rs
+++ b/clippy_utils/src/paths.rs
@@ -93,7 +93,6 @@ pub(super) const PANIC_ANY: [&str; 3] = ["std", "panic", "panic_any"];
 pub const PARKING_LOT_MUTEX_GUARD: [&str; 2] = ["parking_lot", "MutexGuard"];
 pub const PARKING_LOT_RWLOCK_READ_GUARD: [&str; 2] = ["parking_lot", "RwLockReadGuard"];
 pub const PARKING_LOT_RWLOCK_WRITE_GUARD: [&str; 2] = ["parking_lot", "RwLockWriteGuard"];
-pub const PATH_BUF: [&str; 3] = ["std", "path", "PathBuf"];
 pub const PATH_BUF_AS_PATH: [&str; 4] = ["std", "path", "PathBuf", "as_path"];
 pub const PATH_TO_PATH_BUF: [&str; 4] = ["std", "path", "Path", "to_path_buf"];
 pub const PERMISSIONS: [&str; 3] = ["std", "fs", "Permissions"];