Run cargo fmt

This commit is contained in:
Amos Wenger 2022-07-20 15:06:15 +02:00
parent 8318035726
commit 7e285e1ef5
35 changed files with 190 additions and 45 deletions

View file

@ -218,7 +218,10 @@ impl ImportAssets {
}
/// This may return non-absolute paths if a part of the returned path is already imported into scope.
pub fn search_for_relative_paths(&self, sema: &Semantics<'_, RootDatabase>) -> Vec<LocatedImport> {
pub fn search_for_relative_paths(
&self,
sema: &Semantics<'_, RootDatabase>,
) -> Vec<LocatedImport> {
let _p = profile::span("import_assets::search_for_relative_paths");
self.search_for(sema, None)
}