diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-06-05 10:18:12 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-06-05 10:18:12 +0200 |
commit | bd76cdc97b5883ee801149a6b37a9ad78e79d164 (patch) | |
tree | f74f41798b33fd688b53edfe4103cdb068e55ade /app/models/ci | |
parent | 626cb8edc3f4421fe7e866c51fddc2715875ddda (diff) | |
download | gitlab-ce-bd76cdc97b5883ee801149a6b37a9ad78e79d164.tar.gz |
Remove legacy method from pipeline class
Diffstat (limited to 'app/models/ci')
-rw-r--r-- | app/models/ci/pipeline.rb | 11 |
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 |