This is not being used

This commit is contained in:
Santiago Pastorino 2013-10-24 16:57:42 -02:00
parent dfdc292e35
commit dc33dac56b

View File

@ -8,18 +8,6 @@ module ActiveModel
@mutex = Mutex.new
end
def [](key)
@mutex.synchronize do
@data[key.to_s]
end
end
def []=(key, value)
@mutex.synchronize do
@data[key.to_s] = value
end
end
def each(&block)
@mutex.synchronize do
@data.each(&block)