summaryrefslogtreecommitdiff
path: root/lib/chef/provider.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/provider.rb')
-rw-r--r--lib/chef/provider.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/provider.rb b/lib/chef/provider.rb
index 483f9923fe..e8c9d5232e 100644
--- a/lib/chef/provider.rb
+++ b/lib/chef/provider.rb
@@ -435,7 +435,7 @@ class Chef
def register_deprecated_lwrp_class(provider_class, class_name)
# Register Chef::Provider::MyProvider with deprecation warnings if you
# try to access it
- if Chef::Provider.const_defined?(class_name, false)
+ if Chef::Provider.const_defined?(class_name)
Chef::Log.warn "Chef::Provider::#{class_name} already exists! Cannot create deprecation class for #{provider_class}"
else
deprecated_constants[class_name.to_sym] = provider_class
@@ -444,9 +444,9 @@ class Chef
private
- @@deprecated_constants = {}
+ #@@deprecated_constants = {}
def deprecated_constants
- @@deprecated_constants
+ @deprecated_constants ||= {}
end
end
extend DeprecatedLWRPClass