diff options
author | danielsdeleo <dan@getchef.com> | 2014-05-19 16:54:22 -0700 |
---|---|---|
committer | danielsdeleo <dan@getchef.com> | 2014-05-19 16:54:22 -0700 |
commit | 8a9b9bd5d186c300c4d1bd969b95b40a6f4d931c (patch) | |
tree | 43143904922c88049a862cc0db3b40c73b55ffee /lib/chef/cookbook_version.rb | |
parent | 62103f41818f897330b1ed424334d1eb88bcef41 (diff) | |
download | chef-8a9b9bd5d186c300c4d1bd969b95b40a6f4d931c.tar.gz |
Remove unneeded requires when using CookbookVersionLoader
CookbookVersion and CookbookVersionLoader may interact with classes
defined in these files, but never reference their constants directly, so
they do not need to be loaded.
Diffstat (limited to 'lib/chef/cookbook_version.rb')
-rw-r--r-- | lib/chef/cookbook_version.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/chef/cookbook_version.rb b/lib/chef/cookbook_version.rb index cbae3a552d..3d8b9fb908 100644 --- a/lib/chef/cookbook_version.rb +++ b/lib/chef/cookbook_version.rb @@ -20,9 +20,6 @@ # limitations under the License. require 'chef/log' -require 'chef/node' -require 'chef/resource_definition_list' -require 'chef/recipe' require 'chef/cookbook/file_vendor' require 'chef/cookbook/metadata' require 'chef/version_class' |