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/extracts_path.rb')
-rw-r--r--lib/extracts_path.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/extracts_path.rb b/lib/extracts_path.rb
index 055a3a771c2..8f6576c2206 100644
--- a/lib/extracts_path.rb
+++ b/lib/extracts_path.rb
@@ -47,16 +47,6 @@ module ExtractsPath
end
# rubocop:enable Gitlab/ModuleWithInstanceVariables
- def lfs_blob_ids
- blob_ids = tree.blobs.map(&:id)
-
- # When current endpoint is a Blob then `tree.blobs` will be empty, it means we need to analyze
- # the current Blob in order to determine if it's a LFS object
- blob_ids = Array.wrap(@repo.blob_at(@commit.id, @path)&.id) if blob_ids.empty? # rubocop:disable Gitlab/ModuleWithInstanceVariables
-
- @lfs_blob_ids = Gitlab::Git::Blob.batch_lfs_pointers(repository_container.repository, blob_ids).map(&:id) # rubocop:disable Gitlab/ModuleWithInstanceVariables
- end
-
private
# Override in controllers to determine which actions are subject to the redirect