X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/05e212027339733cf39aa9b7536c3f5f69ba0962..00e1deeb862ba6895a02c7b4f1a26bef09288824:/lib/utf8.rb?ds=sidebyside diff --git a/lib/utf8.rb b/lib/utf8.rb index 5f0d219ba..7865d6203 100644 --- a/lib/utf8.rb +++ b/lib/utf8.rb @@ -4,11 +4,6 @@ module UTF8 # using the iconv library, which is in the standard library. def self.valid?(str) return true if str.nil? - Iconv.conv("UTF-8", "UTF-8", str) - return true - - rescue - return false - end + str.valid_encoding? + end end -