File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments