summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2017-03-31 12:56:03 -0700
committerGitHub <noreply@github.com>2017-03-31 12:56:03 -0700
commit0391d9b32b6bb826e5f728b600b8037405a626f5 (patch)
tree1e2b94a0030c4dae9437f2c2a6b73f1e82174b30 /lib
parent4ec04e2829b60efebf4eb0ee85ebe9b89cb8f689 (diff)
parentaf49d18365549cf45694949ed98eb5dea9f4479d (diff)
downloadchef-0391d9b32b6bb826e5f728b600b8037405a626f5.tar.gz
Merge pull request #5982 from chef/lcg/deprecated-resource-method
Chef-13: remove Chef::Resource.updated=
Diffstat (limited to 'lib')
-rw-r--r--lib/chef/resource.rb11
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]