1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

All subclasses of Attribute should be private constants

This commit is contained in:
Sean Griffin 2015-01-27 13:08:00 -07:00
parent 6c235dd958
commit 3a551b9777

View file

@ -156,6 +156,6 @@ module ActiveRecord
false
end
end
private_constant :FromDatabase, :FromUser, :Null, :Uninitialized
private_constant :FromDatabase, :FromUser, :Null, :Uninitialized, :WithCastValue
end
end