summaryrefslogtreecommitdiff
path: root/lib/bitbucket/page.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bitbucket/page.rb')
-rw-r--r--lib/bitbucket/page.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bitbucket/page.rb b/lib/bitbucket/page.rb
index b91a173b53c..49d083cc66f 100644
--- a/lib/bitbucket/page.rb
+++ b/lib/bitbucket/page.rb
@@ -22,10 +22,10 @@ module Bitbucket
attrs.map { |attr| { attr.to_sym => raw[attr] } }.reduce(&:merge)
end
- def parse_values(raw, representation_class)
+ def parse_values(raw, bitbucket_rep_class)
return [] unless raw['values'] && raw['values'].is_a?(Array)
- raw['values'].map { |hash| representation_class.new(hash) }
+ raw['values'].map { |hash| bitbucket_rep_class.new(hash) }
end
def representation_class(type)