Remove dead code

This commit is contained in:
Lin Jen-Shin 2016-10-03 18:35:36 +08:00
parent 705d210c73
commit 9c2306006c
1 changed files with 0 additions and 2 deletions

View File

@ -68,8 +68,6 @@ module HasStatus
scope :skipped, -> { where(status: 'skipped') }
scope :running_or_pending, -> { where(status: [:running, :pending]) }
scope :finished, -> { where(status: [:success, :failed, :canceled]) }
scope :exclude_ignored_jobs, -> do
end
end
def started?