Remove explicit reference to self

This commit is contained in:
Adrian Mugnolo and Santiago Pastorino 2013-12-16 17:27:45 -02:00 committed by Santiago Pastorino
parent adee76181f
commit 115de49004

View File

@ -13,8 +13,8 @@ module ActiveModel
class << self
def inherited(base)
base._attributes = (self._attributes || []).dup
base._associations = (self._associations || {}).dup
base._attributes = (_attributes || []).dup
base._associations = (_associations || {}).dup
end
def setup