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

DescendantsTracker: fix the TruffleRuby implementation

Ref: https://github.com/rails/rails/pull/43723

This was pretty much a typo...
This commit is contained in:
Jean Boussier 2021-12-09 09:37:58 +01:00
parent 479583a7f2
commit 151ba1ab0c

View file

@ -40,7 +40,7 @@ module ActiveSupport
end
def []=(object, _present)
@map[object_id] = object
@map[object.object_id] = object
end
end
WeakSet.new