summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/reports
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-10 15:08:07 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-10 15:08:07 +0000
commitf2f748c08166ef350aa4183242c3611f6617f651 (patch)
treeba7073499e5e1396962c532b2752bdec3301be1d /lib/gitlab/ci/reports
parent0211553b0cd32ddcd49fbe61fdb318984d15af18 (diff)
downloadgitlab-ce-f2f748c08166ef350aa4183242c3611f6617f651.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/ci/reports')
-rw-r--r--lib/gitlab/ci/reports/terraform_reports.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/gitlab/ci/reports/terraform_reports.rb b/lib/gitlab/ci/reports/terraform_reports.rb
index f955d007daf..4b52c25d724 100644
--- a/lib/gitlab/ci/reports/terraform_reports.rb
+++ b/lib/gitlab/ci/reports/terraform_reports.rb
@@ -10,14 +10,6 @@ module Gitlab
@plans = {}
end
- def pick(keys)
- terraform_plans = plans.select do |key|
- keys.include?(key)
- end
-
- { plans: terraform_plans }
- end
-
def add_plan(name, plan)
plans[name] = plan
end