From b0289f2d8c0ab391c0c7e36f2632f61970b2d783 Mon Sep 17 00:00:00 2001 From: kevaundray Date: Sun, 10 Dec 2023 22:33:20 +0000 Subject: [PATCH] chore: fix un-needed fully qualified path (#3755) # Description Since we already import FileMap with the usepath, using fm::FileMap is redundant ## Problem\* Resolves ## Summary\* ## Additional Context ## Documentation\* Check one: - [ ] No documentation needed. - [ ] Documentation included in this PR. - [ ] **[Exceptional Case]** Documentation to be submitted in a separate PR. # PR Checklist\* - [ ] I have tested the changes locally. - [ ] I have formatted the changes with [Prettier](https://prettier.io/) and/or `cargo fmt` on default settings. --- compiler/fm/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/fm/src/lib.rs b/compiler/fm/src/lib.rs index ea964055759..5e95e431071 100644 --- a/compiler/fm/src/lib.rs +++ b/compiler/fm/src/lib.rs @@ -19,7 +19,7 @@ pub const FILE_EXTENSION: &str = "nr"; pub struct FileManager { root: PathBuf, - file_map: file_map::FileMap, + file_map: FileMap, id_to_path: HashMap, path_to_id: HashMap, file_reader: Box,