Remove the deprecated Stack.resolve_static_data() method

This method was left behind after the creation of the Function class and
resulting changes to function resolution in the Juno cycle, for the benefit
of any third-party plugins that may have been relying on it. It's time to
get rid of it.

Change-Id: Ia4700336f27ab259d25de9fd4a061c95198adf57
This commit is contained in:
Zane Bitter 2016-10-14 16:08:37 -04:00
parent 2c6fc7bcd6
commit b53e9ef7e9
1 changed files with 0 additions and 7 deletions

View File

@ -1956,13 +1956,6 @@ class Stack(collections.Mapping):
'tags': self.tags,
}
def resolve_static_data(self, snippet, path=''):
warnings.warn('Stack.resolve_static_data() is deprecated and '
'will be removed in the Ocata release.',
DeprecationWarning)
return self.t.parse(self, snippet, path=path)
def reset_resource_attributes(self):
# nothing is cached if no resources exist
if not self._resources: