about summary refs log tree commit diff
path: root/clippy_dev/src
diff options
context:
space:
mode:
authorPhilipp Krones <hello@philkrones.com>2023-08-24 21:32:12 +0200
committerPhilipp Krones <hello@philkrones.com>2023-08-24 21:32:12 +0200
commitcc61aeea54138d3d037452754456539cf4ae6192 (patch)
tree81856c22858c5d42f7d7e8edfda44340f708cb9a /clippy_dev/src
parent32eecd4b884dd2901aad05d66d78ea643a896e25 (diff)
downloadrust-cc61aeea54138d3d037452754456539cf4ae6192.tar.gz
rust-cc61aeea54138d3d037452754456539cf4ae6192.zip
Merge commit '080b587854a73f2a8cbaecff1884860a78e2ff37' into clippyup
Diffstat (limited to 'clippy_dev/src')
-rw-r--r--clippy_dev/src/update_lints.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/clippy_dev/src/update_lints.rs b/clippy_dev/src/update_lints.rs
index 7c2e06ea69a..842aeed2aa4 100644
--- a/clippy_dev/src/update_lints.rs
+++ b/clippy_dev/src/update_lints.rs
@@ -690,7 +690,6 @@ fn gen_deprecated_lints_test(lints: &[DeprecatedLint]) -> String {
 fn gen_renamed_lints_test(lints: &[RenamedLint]) -> String {
     let mut seen_lints = HashSet::new();
     let mut res: String = GENERATED_FILE_COMMENT.into();
-    res.push_str("//@run-rustfix\n\n");
     for lint in lints {
         if seen_lints.insert(&lint.new_name) {
             writeln!(res, "#![allow({})]", lint.new_name).unwrap();