diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2017-03-31 11:13:41 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2017-03-31 11:13:41 -0700 |
commit | af49d18365549cf45694949ed98eb5dea9f4479d (patch) | |
tree | fed0b2c79157dfedd63de4c2267c132f7c08feef /lib/chef/resource.rb | |
parent | e3e667e6c6df7da373e9f5d7f31650d9edba946f (diff) | |
download | chef-af49d18365549cf45694949ed98eb5dea9f4479d.tar.gz |
remove Chef::Resource.updated=
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/resource.rb')
-rw-r--r-- | lib/chef/resource.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/chef/resource.rb b/lib/chef/resource.rb index 9dc01a8d3a..bd966f9c79 100644 --- a/lib/chef/resource.rb +++ b/lib/chef/resource.rb @@ -909,17 +909,6 @@ class Chef end # - # Set whether this class was updated during an action. - # - # @deprecated Multiple actions are supported by resources. Please call {}#updated_by_last_action} instead. - # - def updated=(true_or_false) - Chef.deprecated(:custom_resource, "Chef::Resource#updated=(true|false) is deprecated. Please call #updated_by_last_action(true|false) instead.") - updated_by_last_action(true_or_false) - @updated = true_or_false - end - - # # The display name of this resource type, for printing purposes. # # Will be used to print out the resource in messages, e.g. resource_name[name] |