# File lib/wicked/controller/concerns/steps.rb, line 87
  def next_step(current_step = nil)
    return @next_step if current_step.nil?
    index = steps.index(current_step)
    step  = steps.at(index + 1) if index.present?
    step  ||= Wicked::FINISH_STEP
  end