Delete redundant casting in tag cloud

This commit is contained in:
Katrina Owen 2013-03-01 16:12:00 -05:00
parent a13199cdda
commit cd7a5e0866

View file

@ -32,7 +32,7 @@ module Stats
end
def counts
@counts ||= tags.map {|t| t.count.to_i}
@counts ||= tags.map {|t| t.count}
end
end
end