summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser/functions.rb
diff options
context:
space:
mode:
authorLuke Kanies <luke@puppetlabs.com>2010-04-18 11:15:52 -0700
committertest branch <puppet-dev@googlegroups.com>2010-02-17 06:50:53 -0800
commit533ef68e47a124182066432c11040bbb6120b658 (patch)
treea64be87a9973a20163ddc728bae7014b1b8af187 /lib/puppet/parser/functions.rb
parentbc90df6e7c0ea194f46ecc3c1753226b8da648c8 (diff)
downloadpuppet-533ef68e47a124182066432c11040bbb6120b658.tar.gz
puppet-533ef68e47a124182066432c11040bbb6120b658.tar.xz
puppet-533ef68e47a124182066432c11040bbb6120b658.zip
Removing obsolete FCollection stub from Functions
Signed-off-by: Luke Kanies <luke@puppetlabs.com>
Diffstat (limited to 'lib/puppet/parser/functions.rb')
-rw-r--r--lib/puppet/parser/functions.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/puppet/parser/functions.rb b/lib/puppet/parser/functions.rb
index 4179cb81d..6ba3669c0 100644
--- a/lib/puppet/parser/functions.rb
+++ b/lib/puppet/parser/functions.rb
@@ -36,12 +36,6 @@ module Puppet::Parser::Functions
raise Puppet::DevError, "Function %s already defined" % name
end
- # We want to use a separate, hidden module, because we don't want
- # people to be able to call them directly.
- unless defined? FCollection
- eval("module FCollection; end")
- end
-
ftype = options[:type] || :statement
unless ftype == :statement or ftype == :rvalue