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:
Diffstat (limited to 'lib/gitlab/ci/variables/builder.rb')
-rw-r--r--lib/gitlab/ci/variables/builder.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/gitlab/ci/variables/builder.rb b/lib/gitlab/ci/variables/builder.rb
index cf5f04215ad..8db8ea3a720 100644
--- a/lib/gitlab/ci/variables/builder.rb
+++ b/lib/gitlab/ci/variables/builder.rb
@@ -171,16 +171,6 @@ module Gitlab
end
end
- def strong_memoize_with(name, *args)
- container = strong_memoize(name) { {} }
-
- if container.key?(args)
- container[args]
- else
- container[args] = yield
- end
- end
-
def release
return unless @pipeline.tag?