# File nqxml/utils.rb, line 32 def NQXML.replacePredefinedEntityRefs(str) return nil if str.nil? copy = str.gsub(/&/n, '&') copy.gsub!(/"/n, '"') copy.gsub!(/'/n, '\') copy.gsub!(/>/n, '>') copy.gsub!(/</n, '<') return copy end