Remove unused AliasRegistry::flatten_aliases method
We do not complete alias names anymore, so this method is not needed.
This commit is contained in:
parent
cc88b0f586
commit
ed2d50ecef
|
@ -50,17 +50,4 @@ Vector<StringView> AliasRegistry::aliases_for(StringView command) const
|
|||
return res;
|
||||
}
|
||||
|
||||
Vector<std::pair<StringView, StringView>> AliasRegistry::flatten_aliases() const
|
||||
{
|
||||
Vector<std::pair<StringView, StringView>> res;
|
||||
if (m_parent)
|
||||
res = m_parent->flatten_aliases();
|
||||
for (auto& alias : m_aliases)
|
||||
{
|
||||
if (not contains(res | transform(std::mem_fn(&AliasDesc::first)), alias.key))
|
||||
res.emplace_back(alias.key, alias.value);
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -20,8 +20,6 @@ public:
|
|||
using iterator = AliasMap::const_iterator;
|
||||
|
||||
Vector<StringView> aliases_for(StringView command) const;
|
||||
using AliasDesc = std::pair<StringView, StringView>;
|
||||
Vector<AliasDesc> flatten_aliases() const;
|
||||
|
||||
private:
|
||||
friend class Scope;
|
||||
|
|
Loading…
Reference in New Issue
Block a user