remove charencode.

This commit is contained in:
Saito 2011-12-30 21:41:39 +08:00
parent 7279e8c177
commit 14023c4e5a
6 changed files with 9 additions and 26 deletions

View file

@ -1,5 +1,4 @@
class Commit
include Utils::CharEncode
attr_accessor :commit
attr_accessor :head
@ -22,7 +21,7 @@ class Commit
end
def safe_message
encode(message)
message
end
def created_at
@ -30,11 +29,11 @@ class Commit
end
def author_email
encode(author.email)
author.email
end
def author_name
encode(author.name)
author.name
end
def prev_commit