diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2019-07-05 12:03:20 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2019-07-05 12:57:40 -0700 |
commit | 8215091264d67d81f0da9a13f968b864ff736cb2 (patch) | |
tree | 37b71de99d1190c9c24e63fbbc50610363b7b8d5 /lib/chef/chef_fs | |
parent | 7bf98ad06b30b7feb4ea3fbbe45a5b733467a5d3 (diff) | |
download | chef-8215091264d67d81f0da9a13f968b864ff736cb2.tar.gz |
Style/ClassCheck
convert kind_of? to is_a?
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/chef_fs')
-rw-r--r-- | lib/chef/chef_fs/file_system/repository/acl.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/chef_fs/file_system/repository/acl.rb b/lib/chef/chef_fs/file_system/repository/acl.rb index 389c1fd38b..c5d763170b 100644 --- a/lib/chef/chef_fs/file_system/repository/acl.rb +++ b/lib/chef/chef_fs/file_system/repository/acl.rb @@ -32,7 +32,7 @@ class Chef end def bare_name - if name == "organization" && parent.kind_of?(AclDir) + if name == "organization" && parent.is_a?(AclDir) "organization.json" else name |