Remove ALIASES block from template util

These alias warnings were removed in #38218 for 2017.7.
This commit is contained in:
rallytime 2017-07-21 09:08:26 -06:00
parent c673b64583
commit ea457aa0a5

View File

@ -73,11 +73,7 @@ class AliasedLoader(object):
return getattr(self.wrapped, name)
def __contains__(self, name):
if name in ALIASES:
salt.utils.warn_until('Nitrogen', ALIAS_WARN)
return ALIASES[name] in self.wrapped
else:
return name in self.wrapped
return name in self.wrapped
class AliasedModule(object):