class REXML::XMLDecl

def write(writer, indent=-1, transitive=false, ie_hack=false)

Ignored
ie_hack::
Ignored
transitive::
Ignored. There must be no whitespace before an XML declaration
indent::
def write(writer, indent=-1, transitive=false, ie_hack=false)
  return nil unless @writethis or writer.kind_of? Output
  writer << START
  writer << " #{content encoding}"
  writer << STOP
end