summaryrefslogtreecommitdiff
path: root/lib/rexml/encodings/UTF-8.rb
blob: 33a7e490c469fd26570e69f8ec5babc19f91d24e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module REXML
  module Encoding
    @@__REXML_encoding_methods =<<-EOL
    def encode content
      content
    end

    def decode(str)
      str
    end
    EOL
  end
end