remove useless wrapper

This commit is contained in:
Aleksey Kladov 2019-01-25 10:20:35 +03:00
parent b90b90cb95
commit ed27bd8d77
2 changed files with 1 additions and 6 deletions

View file

@ -169,7 +169,7 @@ impl Module {
}
pub fn resolve_path(&self, db: &impl HirDatabase, path: &Path) -> PerNs<ModuleDef> {
self.resolve_path_impl(db, path)
db.item_map(self.krate).resolve_path(db, *self, path)
}
pub fn problems(&self, db: &impl HirDatabase) -> Vec<(TreeArc<SyntaxNode>, Problem)> {