X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4826032d183932312d635193c9d3acef6107f280..fa5c39d9bd65e716c9c08830946386fab94bff05:/lib/validators.rb diff --git a/lib/validators.rb b/lib/validators.rb index 640a49564..6338e9ce9 100644 --- a/lib/validators.rb +++ b/lib/validators.rb @@ -1,7 +1,6 @@ module ActiveRecord module Validations module ClassMethods - # error message when invalid UTF-8 is detected @@invalid_utf8_message = " is invalid UTF-8" @@ -13,8 +12,7 @@ module ActiveRecord validates_each(attrs) do |record, attr, value| record.errors.add(attr, @@invalid_utf8_message) unless UTF8.valid? value end - end - + end end end end