Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
small change to return statements in attribute properties
  • Loading branch information
Florian Feldhaus committed Jun 27, 2012
1 parent 4110910 commit 5aec5f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/occi/core/attribute_properties.rb
Expand Up @@ -23,7 +23,7 @@ def combine
self[key].combine.each { |attr| array << key + '.' + attr }
end
end
return array
array
end

def combine_with_defaults
Expand All @@ -35,7 +35,7 @@ def combine_with_defaults
self[key].combine_with_defaults.each { |k,v| hash[key + '.' + k] = v }
end
end
return hash
hash
end

end
Expand Down

0 comments on commit 5aec5f0

Please sign in to comment.