[Source]
# File lib/rss/rexmlparser.rb, line 40 40: def raise_for_undefined_entity? 41: false 42: end
# File lib/rss/rexmlparser.rb, line 45 45: def xmldecl(version, encoding, standalone) 46: super(version, encoding, standalone == "yes") 47: # Encoding is converted to UTF-8 when REXML parse XML. 48: @encoding = 'UTF-8' 49: end
[Validate]