diff --git a/lib/puppet/parser/functions/collect.rb b/lib/puppet/parser/functions/collect.rb deleted file mode 100644 index fea42a4df..000000000 --- a/lib/puppet/parser/functions/collect.rb +++ /dev/null @@ -1,15 +0,0 @@ -Puppet::Parser::Functions::newfunction( -:collect, -:type => :rvalue, -:arity => 2, -:doc => <<-'ENDHEREDOC') do |args| - The 'collect' function has been renamed to 'map'. Please update your manifests. - - The collect function is reserved for future use. - - Removed as of 3.4 - - requires `parser = future`. - ENDHEREDOC - - raise NotImplementedError, - "The 'collect' function has been renamed to 'map'. Please update your manifests." -end diff --git a/lib/puppet/parser/functions/select.rb b/lib/puppet/parser/functions/select.rb deleted file mode 100644 index 93924f9d0..000000000 --- a/lib/puppet/parser/functions/select.rb +++ /dev/null @@ -1,15 +0,0 @@ -Puppet::Parser::Functions::newfunction( -:select, -:type => :rvalue, -:arity => 2, -:doc => <<-'ENDHEREDOC') do |args| - The 'select' function has been renamed to 'filter'. Please update your manifests. - - The select function is reserved for future use. - - Removed as of 3.4 - - requires `parser = future`. - ENDHEREDOC - - raise NotImplementedError, - "The 'select' function has been renamed to 'filter'. Please update your manifests." -end