lib/aws/simple_db/delete_attributes.rb in aws-sdk-1.9.0 vs lib/aws/simple_db/delete_attributes.rb in aws-sdk-1.9.1

- old
+ new

@@ -12,16 +12,16 @@ # language governing permissions and limitations under the License. module AWS class SimpleDB - # @private + # @api private module DeleteAttributes include ExpectConditionOption - # @private + # @api private protected def delete_named_attributes *attribute_names expect_opts = attribute_names.pop if attribute_names.last.kind_of?(Hash) attributes = attribute_names.flatten.collect{|n| { :name => n.to_s } } opts = { @@ -32,10 +32,10 @@ } opts.delete(:expected) if opts[:expected].empty? client.delete_attributes(opts) unless attributes.empty? end - # @private + # @api private protected def delete_attribute_values(attributes) opts = { :domain_name => item.domain.name, :item_name => item.name,