Flowdock
method

need_source_encoding_update?

Importance_0
v2_6_3 - Show latest stable - 0 notes - Class: REXML::Parsers::BaseParser
need_source_encoding_update?(xml_declaration_encoding) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rexml/parsers/baseparser.rb, line 470
      def need_source_encoding_update?(xml_declaration_encoding)
        return false if xml_declaration_encoding.nil?
        return false if /\AUTF-16\z/ =~ xml_declaration_encoding
        true
      end
Register or log in to add new notes.