diff options
author | Stan Hu <stanhu@gmail.com> | 2017-05-12 14:01:54 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2017-05-12 14:01:54 -0700 |
commit | 8ae2e6bdbb4e1254fd27dc8112c8b6c5c4015f07 (patch) | |
tree | 8282cba69c1df04c9f0b8644af226f572ac2765f /lib | |
parent | e4261fe3ce0e6ba38db99323b9fb479c6a182d77 (diff) | |
download | gitlab-ce-8ae2e6bdbb4e1254fd27dc8112c8b6c5c4015f07.tar.gz |
Remove trailing comma in dependency linker to satisfy Rubocop
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/dependency_linker.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/dependency_linker.rb b/lib/gitlab/dependency_linker.rb index 5e884c4bea1..c45ae8feb2c 100644 --- a/lib/gitlab/dependency_linker.rb +++ b/lib/gitlab/dependency_linker.rb @@ -1,7 +1,7 @@ module Gitlab module DependencyLinker LINKERS = [ - GemfileLinker, + GemfileLinker ].freeze def self.linker(blob_name) |