diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-07-26 17:26:36 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-07-26 17:26:36 -0700 |
commit | 5f6daf7b670b571447a5d907219ab7804e3c9007 (patch) | |
tree | ec228a87abab99d4dbc0626192d30b724a08888e /lib/chef/client.rb | |
parent | ba0c5fcd7a1735b4ae170816dc48b05d791b9733 (diff) | |
download | chef-attrs.tar.gz |
Combine attr_readers onto a single lineattrs
The method takes more than 1 argument
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/client.rb')
-rw-r--r-- | lib/chef/client.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/chef/client.rb b/lib/chef/client.rb index 1e069be185..0cc4b19e9f 100644 --- a/lib/chef/client.rb +++ b/lib/chef/client.rb @@ -880,8 +880,7 @@ class Chef private - attr_reader :override_runlist - attr_reader :specific_recipes + attr_reader :override_runlist, :specific_recipes def profiling_prereqs! require "ruby-prof" |