From 0a59ce7e5077909fc8918bf1e34ec20a558513b2 Mon Sep 17 00:00:00 2001 From: Edward Muller Date: Fri, 11 Jun 2010 01:15:16 +0800 Subject: [PATCH] no need to store the response --- lib/fog/vcloud/requests/get_organization.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/fog/vcloud/requests/get_organization.rb b/lib/fog/vcloud/requests/get_organization.rb index edce0363e..d545f3837 100644 --- a/lib/fog/vcloud/requests/get_organization.rb +++ b/lib/fog/vcloud/requests/get_organization.rb @@ -3,13 +3,12 @@ module Fog class Real def get_organization(organization_uri) - response = request( + request( :expects => 200, :method => 'GET', :parser => Fog::Parsers::Vcloud::GetOrganization.new, :uri => organization_uri ) - response end end