summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/parser')
-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