# File lib/xml/dom2/dombuilder.rb, line 228
      def endCdata
        return unless @createCDATASection
        cdata = @document.createCDATASection(@cdata_buf)
        @current.appendChild(cdata)
        @cdata_buf = ''
        @cdata_f = false
      end