X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9813d9f1e48d575bb0e0b5029dc0ec134a011090..ef7f3d800cbdd49b692df10d312e5fd880e2e938:/lib/utf8.rb diff --git a/lib/utf8.rb b/lib/utf8.rb index c6e1918af..e669d8aae 100644 --- a/lib/utf8.rb +++ b/lib/utf8.rb @@ -2,10 +2,10 @@ module UTF8 ## # Checks that a string is valid UTF-8 by trying to convert it to UTF-8 # using the iconv library, which is in the standard library. - if String.new.respond_to?("valid_encoding?") + if ''.respond_to?("valid_encoding?") def self.valid?(str) return true if str.nil? - return str.valid_encoding? + str.valid_encoding? end else require 'iconv'