class ActionDispatch::Request::Utils::NoNilParamEncoder

:nodoc:
Remove nils from the params hash.

def self.handle_array(params)

:nodoc:
Remove nils from the params hash.
def self.handle_array(params)
  list = super
  list.compact!
  list
end