no need to check for this constant

This commit is contained in:
Xavier Noria
2012-02-07 21:20:35 +01:00
parent f3595b5924
commit dafc3c7a06

View File

@@ -163,7 +163,7 @@ module ActiveRecord #:nodoc:
#
# class IHaveMyOwnXML < ActiveRecord::Base
# def to_xml(options = {})
# require 'builder' unless defined? ::Builder
# require 'builder'
# options[:indent] ||= 2
# xml = options[:builder] ||= ::Builder::XmlMarkup.new(:indent => options[:indent])
# xml.instruct! unless options[:skip_instruct]