summaryrefslogtreecommitdiff
path: root/lib/chef/environment.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-07-07 15:19:21 -0700
committerTim Smith <tsmith84@gmail.com>2020-07-07 15:19:21 -0700
commit1485a862053fb20ade1f93bb82c6918cd4078975 (patch)
tree21ae9d81524f56a4b52449424550259422b1b9a5 /lib/chef/environment.rb
parent3e9e6d41a31bd1ac932f7f4100102466b4fdfe05 (diff)
downloadchef-1485a862053fb20ade1f93bb82c6918cd4078975.tar.gz
Avoid assigning variables before returning if we don't have to
These seemed pretty straight forward. There's a new Rubocop cop for these. Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/environment.rb')
-rw-r--r--lib/chef/environment.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/chef/environment.rb b/lib/chef/environment.rb
index 8a143632f1..c121e37880 100644
--- a/lib/chef/environment.rb
+++ b/lib/chef/environment.rb
@@ -119,7 +119,7 @@ class Chef
end
def to_h
- result = {
+ {
"name" => @name,
"description" => @description,
"cookbook_versions" => @cookbook_versions,
@@ -128,7 +128,6 @@ class Chef
"default_attributes" => @default_attributes,
"override_attributes" => @override_attributes,
}
- result
end
alias_method :to_hash, :to_h