summaryrefslogtreecommitdiff
path: root/lib/rexml/encodings/UTF-8.rb
blob: 96fee4c4c07d2efefa2758b6b5f954052416b8fa (plain)
1
2
3
4
5
6
7
8
9
10
11
module REXML
	module Encoding
		def encode content
			content
		end

		def decode(str)
			str
		end
	end
end