vendored/puppet/lib/puppet/indirector/catalog/yaml.rb in bolt-0.23.0 vs vendored/puppet/lib/puppet/indirector/catalog/yaml.rb in bolt-0.24.0

- old
+ new

@@ -1,22 +1,6 @@ require 'puppet/resource/catalog' require 'puppet/indirector/yaml' class Puppet::Resource::Catalog::Yaml < Puppet::Indirector::Yaml desc "Store catalogs as flat files, serialized using YAML." - - private - - # Override these, because yaml doesn't want to convert our self-referential - # objects. This is hackish, but eh. - def from_yaml(text) - if config = YAML.load(text) - return config - end - end - - def to_yaml(config) - # We can't yaml-dump classes. - #config.edgelist_class = nil - YAML.dump(config) - end end