diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-10-07 15:04:47 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-10-25 09:29:29 -0700 |
commit | 6536f15dcb53938fe9c77e7438b20fe6ac3cdffb (patch) | |
tree | e6f6a3b0f28914582e4be97c5ecb9e3b20a0e9c1 /lib/chef/node.rb | |
parent | 10904d6cf42a2a0ed69757aca3e80f512bb89379 (diff) | |
download | chef-6536f15dcb53938fe9c77e7438b20fe6ac3cdffb.tar.gz |
remove breadcrumb state
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/node.rb')
-rw-r--r-- | lib/chef/node.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/chef/node.rb b/lib/chef/node.rb index 212b1ced14..34a92d325b 100644 --- a/lib/chef/node.rb +++ b/lib/chef/node.rb @@ -197,7 +197,6 @@ class Chef # Set a normal attribute of this node, but auto-vivify any Mashes that # might be missing def normal - attributes.top_level_breadcrumb = nil attributes.normal end @@ -209,14 +208,12 @@ class Chef # Set a default of this node, but auto-vivify any Mashes that might # be missing def default - attributes.top_level_breadcrumb = nil attributes.default end # Set an override attribute of this node, but auto-vivify any Mashes that # might be missing def override - attributes.top_level_breadcrumb = nil attributes.override end @@ -237,7 +234,6 @@ class Chef end def automatic_attrs - attributes.top_level_breadcrumb = nil attributes.automatic end |