remove debug line

This commit is contained in:
danielgrippi 2011-09-14 18:21:54 -07:00
parent cb7bc0ecad
commit a396ad811f
2 changed files with 1 additions and 1 deletions

View file

@ -242,6 +242,7 @@ GEM
json (>= 1.2.4) json (>= 1.2.4)
kaminari (0.12.4) kaminari (0.12.4)
rails (>= 3.0.0) rails (>= 3.0.0)
launchy (2.0.3)
linecache (0.43) linecache (0.43)
linecache19 (0.5.12) linecache19 (0.5.12)
ruby_core_source (>= 0.1.4) ruby_core_source (>= 0.1.4)

View file

@ -17,7 +17,6 @@ module Base64
# ArgumentError is raised if +str+ is incorrectly padded or contains # ArgumentError is raised if +str+ is incorrectly padded or contains
# non-alphabet characters. Note that CR or LF are also rejected. # non-alphabet characters. Note that CR or LF are also rejected.
def strict_decode64(str) def strict_decode64(str)
Rails.logger.info("trying to decode string: " + str)
str.unpack("m0").first str.unpack("m0").first
end end