diff options
author | Stan Hu <stanhu@gmail.com> | 2016-11-17 20:16:22 -0800 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2016-11-21 16:47:29 -0800 |
commit | b8bf28348fb903c62e084353896873438f4f0845 (patch) | |
tree | 0cb8b23be351db10023d2143ae7ad5d7983ce094 /lib/bitbucket | |
parent | f25d64d41ae16b96c1381068112717be5b4a1552 (diff) | |
download | gitlab-ce-b8bf28348fb903c62e084353896873438f4f0845.tar.gz |
Rubocop fixes
Diffstat (limited to 'lib/bitbucket')
-rw-r--r-- | lib/bitbucket/page.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bitbucket/page.rb b/lib/bitbucket/page.rb index 0e8ce11aa1d..bc51ce7dce2 100644 --- a/lib/bitbucket/page.rb +++ b/lib/bitbucket/page.rb @@ -29,7 +29,7 @@ module Bitbucket end def representation_class(type) - class_name = Bitbucket::Representation.const_get(type.to_s.camelize) + Bitbucket::Representation.const_get(type.to_s.camelize) end end end |