diff options
author | Thong Kuah <tkuah@gitlab.com> | 2019-05-20 14:48:47 +1200 |
---|---|---|
committer | Thong Kuah <tkuah@gitlab.com> | 2019-08-28 00:04:12 +1200 |
commit | 9ff86452b0c2f21c1f86cd1a14dde69c62d2ff65 (patch) | |
tree | 1d570e6be2d5a26c0017b769a0662ae03948cd26 /app/models/upload.rb | |
parent | df3c259da67e7184ba8590a1ce55cc43a1247668 (diff) | |
download | gitlab-ce-59719-const-get-rubocop.tar.gz |
Address ConstGetInheritFalse violations59719-const-get-rubocop
There should be no cases where we need to inherit=true.
Diffstat (limited to 'app/models/upload.rb')
-rw-r--r-- | app/models/upload.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/upload.rb b/app/models/upload.rb index ca74f16b3b8..deb383b8f82 100644 --- a/app/models/upload.rb +++ b/app/models/upload.rb @@ -114,7 +114,7 @@ class Upload < ApplicationRecord end def uploader_class - Object.const_get(uploader) + Object.const_get(uploader, false) end def identifier |