X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0d3a9ed9cb47ce3b89ea9eaffbb589f9a9ff6d22..dc2a2c8ebd1a11e4a64555fda22c6859a51defff:/lib/utf8.rb?ds=sidebyside diff --git a/lib/utf8.rb b/lib/utf8.rb index c6e1918af..9e9279deb 100644 --- a/lib/utf8.rb +++ b/lib/utf8.rb @@ -2,13 +2,13 @@ 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' + require "iconv" def self.valid?(str) return true if str.nil?