summaryrefslogtreecommitdiff
path: root/chef/lib/chef/cookbook_version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'chef/lib/chef/cookbook_version.rb')
-rw-r--r--chef/lib/chef/cookbook_version.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/chef/lib/chef/cookbook_version.rb b/chef/lib/chef/cookbook_version.rb
index a6f95e2c3b..ef28bf8d50 100644
--- a/chef/lib/chef/cookbook_version.rb
+++ b/chef/lib/chef/cookbook_version.rb
@@ -113,7 +113,6 @@ class Chef
# TODO: timh/cw: 5-24-2010: mutators for files (e.g., recipe_filenames=,
# recipe_filenames.insert) should dirty the manifest so it gets regenerated.
class CookbookVersion
- include Chef::IndexQueue::Indexable
include Comparable
COOKBOOK_SEGMENTS = [ :resources, :providers, :recipes, :definitions, :libraries, :attributes, :files, :templates, :root_files ]
@@ -779,7 +778,6 @@ class Chef
end
if o.has_key?("_id")
cookbook_version.couchdb_id = o["_id"] if o.has_key?("_id")
- cookbook_version.index_id = cookbook_version.couchdb_id
o.delete("_id")
end
# We want the Chef::Cookbook::Metadata object to always be inflated
@@ -962,7 +960,6 @@ class Chef
def couchdb_id=(value)
@couchdb_id = value
- @index_id = value
end
def <=>(o)