Unnamed repository; edit this file 'description' to name the repository.
Merge pull request #20411 from BenjaminBrienen/duplicate-field
remove duplicate field in Debug impl of ProjectWorkspace
| -rw-r--r-- | crates/project-model/src/workspace.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/project-model/src/workspace.rs b/crates/project-model/src/workspace.rs index 5b36e10fd6..00032bcf1d 100644 --- a/crates/project-model/src/workspace.rs +++ b/crates/project-model/src/workspace.rs @@ -157,7 +157,6 @@ impl fmt::Debug for ProjectWorkspace { .field("file", &file) .field("cargo_script", &cargo_script.is_some()) .field("n_sysroot_crates", &sysroot.num_packages()) - .field("cargo_script", &cargo_script.is_some()) .field("n_rustc_cfg", &rustc_cfg.len()) .field("toolchain", &toolchain) .field("data_layout", &target_layout) |