# File lib/rufus/sc/scheduler.rb, line 248
    def combine_opts (schedulable, opts)

      if schedulable.respond_to?(:trigger)

        opts[:schedulable] = schedulable

      elsif schedulable != nil

        opts = schedulable.merge(opts)
      end

      opts
    end