about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristopher B. Speir <chris@cbspeir.dev>2024-04-30 20:02:32 -0500
committerChristopher B. Speir <chris@cbspeir.dev>2024-05-01 08:45:45 -0500
commitfed9940e57949b4e2153a465d22a51a2bc975b6d (patch)
tree08ba7f2b87c78bb7677114cd457284bc0130c73c
parenta7f66baaf15c6aa4c74333d312a522c1a76735e6 (diff)
downloadrust-fed9940e57949b4e2153a465d22a51a2bc975b6d.tar.gz
rust-fed9940e57949b4e2153a465d22a51a2bc975b6d.zip
Remove clippy_utils::paths::VEC_RESIZE
This path is no longer used and can be removed.
-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 456b8019e95..0e26b3bfd62 100644
--- a/clippy_utils/src/paths.rs
+++ b/clippy_utils/src/paths.rs
@@ -108,7 +108,6 @@ pub const VEC_DEQUE_ITER: [&str; 5] = ["alloc", "collections", "vec_deque", "Vec
 pub const VEC_FROM_ELEM: [&str; 3] = ["alloc", "vec", "from_elem"];
 pub const VEC_NEW: [&str; 4] = ["alloc", "vec", "Vec", "new"];
 pub const VEC_WITH_CAPACITY: [&str; 4] = ["alloc", "vec", "Vec", "with_capacity"];
-pub const VEC_RESIZE: [&str; 4] = ["alloc", "vec", "Vec", "resize"];
 pub const INSTANT_NOW: [&str; 4] = ["std", "time", "Instant", "now"];
 pub const VEC_IS_EMPTY: [&str; 4] = ["alloc", "vec", "Vec", "is_empty"];
 pub const VEC_POP: [&str; 4] = ["alloc", "vec", "Vec", "pop"];