Method: ActionDispatch::Flash::FlashHash#update

Defined in:
lib/action_dispatch/middleware/flash.rb

#update(h) ⇒ Object Also known as: merge!

:nodoc:



80
81
82
83
# File 'lib/action_dispatch/middleware/flash.rb', line 80

def update(h) #:nodoc:
  h.keys.each { |k| keep(k) }
  super
end