# 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!(/&lt;/n, '<')
	return copy
    end