Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-06-05 11:18:12 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-06-05 11:18:12 +0300
commitbd76cdc97b5883ee801149a6b37a9ad78e79d164 (patch)
treef74f41798b33fd688b53edfe4103cdb068e55ade /app/models
parent626cb8edc3f4421fe7e866c51fddc2715875ddda (diff)
Remove legacy method from pipeline class
Diffstat (limited to 'app/models')
-rw-r--r--app/models/ci/pipeline.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/app/models/ci/pipeline.rb b/app/models/ci/pipeline.rb
index fb1d4720ba8..e84693bcf3a 100644
--- a/app/models/ci/pipeline.rb
+++ b/app/models/ci/pipeline.rb
@@ -285,17 +285,6 @@ module Ci
end
end
- ##
- # TODO, phase this method out
- #
- def config_builds_attributes
- return [] unless config_processor
-
- config_processor.
- builds_for_ref(ref, tag?, trigger_requests.first).
- sort_by { |build| build[:stage_idx] }
- end
-
def stage_seeds
return [] unless config_processor