diff --git a/lib/puppet/file_collection.rb b/lib/puppet/file_collection.rb deleted file mode 100644 index 42ebfd477..000000000 --- a/lib/puppet/file_collection.rb +++ /dev/null @@ -1,19 +0,0 @@ -# This was a simple way to turn file names into singletons, -# -# The theory was, like: -# 1. Turn filenames into singletons. -# 2. ???? -# 3. Huge memory savings! -# -# In practice it used several MB more memory overall, and it cost more CPU -# time, and it added complexity to the code. Which was awesome. -# -# So, I gutted it. It doesn't do anything any more, but we retain the -# external form that people included so that they don't explode so much. -# -# This should be removed from the system after a graceful deprecation period, -# probably about the time that a version of Puppet containing this change is -# the last supported version. --daniel 2012-07-17 -class Puppet::FileCollection - require 'puppet/file_collection/lookup' -end diff --git a/lib/puppet/file_collection/lookup.rb b/lib/puppet/file_collection/lookup.rb deleted file mode 100644 index 598b1842c..000000000 --- a/lib/puppet/file_collection/lookup.rb +++ /dev/null @@ -1,10 +0,0 @@ -require 'puppet/file_collection' - -module Puppet::FileCollection::Lookup - # Yeah, this is all the external interface that was added to the folks who - # included this really was. Thankfully. - # - # See the comments in `puppet/file_collection.rb` for the annotated version, - # or just port your code away from this by adding the accessors on your own. - attr_accessor :line, :file -end