Signed-off-by: Luke Kanies <[email protected]>
---
Local-branch: refactor/master/8233-refactor_parameter_management
 lib/puppet/type.rb |   16 ----------------
 1 files changed, 0 insertions(+), 16 deletions(-)

diff --git a/lib/puppet/type.rb b/lib/puppet/type.rb
index efa4fd6..29a0e58 100644
--- a/lib/puppet/type.rb
+++ b/lib/puppet/type.rb
@@ -1638,12 +1638,6 @@ class Type
 
   # all of the variables that must be initialized for each subclass
   def self.initvars
-    # all of the instances of this class
-    @objects = Hash.new
-    @aliases = Hash.new
-
-    @defaults = {}
-
     @parameters ||= []
 
     @validproperties = {}
@@ -1651,17 +1645,7 @@ class Type
     @parameters = []
     @paramhash = {}
 
-    @paramdoc = Hash.new { |hash,key|
-      key = key.intern if key.is_a?(String)
-      if hash.include?(key)
-        hash[key]
-      else
-        "Param Documentation for #{key} not found"
-      end
-    }
-
     @doc ||= ""
-
   end
 
   def self.to_s
-- 
1.7.3.1

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/puppet-dev?hl=en.

Reply via email to