1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

no need to store the response

This commit is contained in:
Edward Muller 2010-06-11 01:15:16 +08:00 committed by Wesley Beary
parent 20eeba5f95
commit 0a59ce7e50

View file

@ -3,13 +3,12 @@ module Fog
class Real class Real
def get_organization(organization_uri) def get_organization(organization_uri)
response = request( request(
:expects => 200, :expects => 200,
:method => 'GET', :method => 'GET',
:parser => Fog::Parsers::Vcloud::GetOrganization.new, :parser => Fog::Parsers::Vcloud::GetOrganization.new,
:uri => organization_uri :uri => organization_uri
) )
response
end end
end end