# File lib/action_controller/filters.rb, line 549
        def update_conditions(filters, conditions)
          return if conditions.empty?
          if conditions[:only]
            write_inheritable_hash('included_actions', condition_hash(filters, conditions[:only]))
          else
            write_inheritable_hash('excluded_actions', condition_hash(filters, conditions[:except])) if conditions[:except]
          end
        end