summaryrefslogtreecommitdiff
path: root/app/models/commit.rb
diff options
context:
space:
mode:
authorDouwe Maan <douwe@selenight.nl>2017-09-25 10:23:43 +0200
committerDouwe Maan <douwe@selenight.nl>2017-09-25 10:23:43 +0200
commit19a30595d90d771ffd6ae0be8ada0842b151e3f6 (patch)
tree0d8182be4ff61205bf6f9c04e03fa7058c6f01d3 /app/models/commit.rb
parent91b40b3bab63b1b9dae4f3efa54f259b09c6eab3 (diff)
downloadgitlab-ce-19a30595d90d771ffd6ae0be8ada0842b151e3f6.tar.gz
Remove unnecessary comments
Diffstat (limited to 'app/models/commit.rb')
-rw-r--r--app/models/commit.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/models/commit.rb b/app/models/commit.rb
index c85b5b93607..6dba154a6ea 100644
--- a/app/models/commit.rb
+++ b/app/models/commit.rb
@@ -25,7 +25,6 @@ class Commit
DIFF_HARD_LIMIT_FILES = 1000
DIFF_HARD_LIMIT_LINES = 50000
- # The SHA can be between 7 and 40 hex characters.
MIN_SHA_LENGTH = 7
COMMIT_SHA_PATTERN = /\h{#{MIN_SHA_LENGTH},40}/.freeze
@@ -217,7 +216,6 @@ class Commit
@raw.respond_to?(method, include_private) || super
end
- # Truncate sha to 7 characters
def short_id
@raw.short_id(MIN_SHA_LENGTH)
end