summaryrefslogtreecommitdiffstats
path: root/lib/puppet/node
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-12-09 15:30:11 -0600
committerLuke Kanies <luke@madstop.com>2008-12-09 15:30:11 -0600
commitc927ce05bbd96fa9aacc8e52f8eb797403a1e433 (patch)
tree721ca37083dcf46f4f94610d8003df53450c64c1 /lib/puppet/node
parente88746b48cfd4ce7cd9acd0baf61d9b660b460e9 (diff)
downloadpuppet-c927ce05bbd96fa9aacc8e52f8eb797403a1e433.tar.gz
puppet-c927ce05bbd96fa9aacc8e52f8eb797403a1e433.tar.xz
puppet-c927ce05bbd96fa9aacc8e52f8eb797403a1e433.zip
Renaming Puppet::ResourceReference to Puppet::Resource::Reference
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'lib/puppet/node')
-rw-r--r--lib/puppet/node/catalog.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/node/catalog.rb b/lib/puppet/node/catalog.rb
index f6c0a1959..bc522cc1e 100644
--- a/lib/puppet/node/catalog.rb
+++ b/lib/puppet/node/catalog.rb
@@ -368,12 +368,12 @@ class Puppet::Node::Catalog < Puppet::SimpleGraph
# Always create a resource reference, so that it always canonizes how we
# are referring to them.
if title
- ref = Puppet::ResourceReference.new(type, title).to_s
+ ref = Puppet::Resource::Reference.new(type, title).to_s
else
# If they didn't provide a title, then we expect the first
# argument to be of the form 'Class[name]', which our
# Reference class canonizes for us.
- ref = Puppet::ResourceReference.new(nil, type).to_s
+ ref = Puppet::Resource::Reference.new(nil, type).to_s
end
@resource_table[ref]
end