lib/fog/aws/parsers/simpledb/get_attributes.rb in fog-1.22.0 vs lib/fog/aws/parsers/simpledb/get_attributes.rb in fog-1.22.1
- old
+ new
@@ -2,13 +2,11 @@
module Fog
module Parsers
module AWS
module SimpleDB
-
class GetAttributes < Fog::Parsers::AWS::SimpleDB::Basic
-
def reset
@attribute = nil
@response = { 'Attributes' => {} }
end
@@ -25,12 +23,10 @@
response[name] = value
when 'Value'
response['Attributes'][@attribute] << sdb_decode(value)
end
end
-
end
-
end
end
end
end