summaryrefslogtreecommitdiff
path: root/lib/gitlab/git.rb
diff options
context:
space:
mode:
authorZeger-Jan van de Weg <mail@zjvandeweg.nl>2015-11-03 13:09:18 +0100
committerZeger-Jan van de Weg <mail@zjvandeweg.nl>2016-02-05 08:39:44 +0100
commit5ffec2c953478fbad35d7e7f4fc4b6eb119d7918 (patch)
tree055f748ad97954ffce6c195139b8248ba1471c7b /lib/gitlab/git.rb
parentbe3399868cbcfdce85daa6fdf53a079bc163056a (diff)
downloadgitlab-ce-5ffec2c953478fbad35d7e7f4fc4b6eb119d7918.tar.gz
Freeze the expression instead of the literal
Also remove the spec for it
Diffstat (limited to 'lib/gitlab/git.rb')
-rw-r--r--lib/gitlab/git.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/gitlab/git.rb b/lib/gitlab/git.rb
index a33daeb119f..191bea86ac3 100644
--- a/lib/gitlab/git.rb
+++ b/lib/gitlab/git.rb
@@ -1,7 +1,6 @@
module Gitlab
module Git
- # '0' * 40 -- this was easyer to freeze
- BLANK_SHA = "0000000000000000000000000000000000000000".freeze
+ BLANK_SHA = ('0' * 40).freeze
TAG_REF_PREFIX = "refs/tags/".freeze
BRANCH_REF_PREFIX = "refs/heads/".freeze