Skip to content

Commit 9479357

Browse files
committed
Removes debug
1 parent f12ba84 commit 9479357

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/lib.rs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -160,18 +160,9 @@ pub fn init_pnp_manifest(manifest: &mut Manifest, p: &Path) {
160160

161161
for (name, ranges) in manifest.package_registry_data.iter_mut() {
162162
for (reference, info) in ranges.iter_mut() {
163-
println!("manifest.manifest_dir, {}", manifest.manifest_dir.to_string_lossy());
164-
165-
println!("info.package_location: {}", info.package_location.to_string_lossy());
166-
167163
let package_location = manifest.manifest_dir.join(info.package_location.clone());
168-
169-
println!("package_location: {}", package_location.to_string_lossy());
170-
171164
let normalized_location = util::normalize_path(package_location.to_string_lossy());
172165

173-
println!("normalized_location: {normalized_location}");
174-
175166
info.package_location = PathBuf::from(normalized_location);
176167

177168
if !info.discard_from_lookup {
@@ -216,12 +207,8 @@ pub fn find_locator<'a>(manifest: &'a Manifest, path: &Path) -> Option<&'a Packa
216207
}
217208
}
218209

219-
println!("path {}", path.to_string_lossy());
220-
221210
let path = util::normalize_path(path.to_string_lossy());
222211

223-
println!("path {path}");
224-
225212
manifest.location_trie.get_ancestor_value(&path)
226213
}
227214

0 commit comments

Comments
 (0)