mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 05:38:46 +00:00
Remove dbg
This commit is contained in:
parent
2400d70442
commit
3de3b52f10
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ mod fixtures {
|
|||
Message::CompilerArtifact(artifact) => {
|
||||
if artifact.target.kind.contains(&"proc-macro".to_string()) {
|
||||
let repr = format!("{} {}", crate_name, version);
|
||||
if artifact.package_id.repr.starts_with(dbg!(&repr)) {
|
||||
if artifact.package_id.repr.starts_with(&repr) {
|
||||
return artifact.filenames[0].clone();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue