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/bitbucket_server_import/user_caching.rb')
-rw-r--r--lib/gitlab/bitbucket_server_import/user_caching.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/gitlab/bitbucket_server_import/user_caching.rb b/lib/gitlab/bitbucket_server_import/user_caching.rb
deleted file mode 100644
index 0f0169122c5..00000000000
--- a/lib/gitlab/bitbucket_server_import/user_caching.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module BitbucketServerImport
- module UserCaching
- SOURCE_USER_CACHE_KEY = 'bitbucket_server/project/%s/source/username/%s'
-
- def source_user_cache_key(project_id, username)
- format(SOURCE_USER_CACHE_KEY, project_id, username)
- end
- end
- end
-end