diff options
Diffstat (limited to 'lib/chef/chef_class.rb')
-rw-r--r-- | lib/chef/chef_class.rb | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/chef/chef_class.rb b/lib/chef/chef_class.rb index 1caeee4052..f1dd797c04 100644 --- a/lib/chef/chef_class.rb +++ b/lib/chef/chef_class.rb @@ -162,22 +162,14 @@ class Chef @resource_priority_map = nil end - # - # Removes a resource - # # @api private - def delete_resource_priority_array(name, &filter) - resource_priority_map.delete_priority_array(name, &filter) - end - - private - def provider_priority_map @provider_priority_map ||= begin # these slurp in the resource+provider world, so be exceedingly lazy about requiring them Chef::Platform::ProviderPriorityMap.instance end end + # @api private def resource_priority_map @resource_priority_map ||= begin Chef::Platform::ResourcePriorityMap.instance |