Skip to content

Commit

Permalink
rollback for patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Durand committed Apr 8, 2011
1 parent a9152be commit af448ba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/sunspot/index_queue/entry/active_record_impl.rb
Expand Up @@ -92,7 +92,7 @@ def add(klass, id, delete, priority)
end

# Implementation of the delete_entries method.
def delete_entries(ids)
def delete_entries (ids)
delete_all(:id => ids)
end

Expand Down
2 changes: 1 addition & 1 deletion lib/sunspot/index_queue/entry/data_mapper_impl.rb
Expand Up @@ -83,7 +83,7 @@ def add(klass, id, delete, priority)
end

# Implementation of the delete_entries method.
def delete_entries(ids)
def delete_entries (ids)
all(:id => ids).destroy!
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/sunspot/index_queue/entry/mongo_impl.rb
Expand Up @@ -141,7 +141,7 @@ def add(klass, id, delete, priority)
end

# Implementation of the delete_entries method.
def delete_entries(ids)
def delete_entries (ids)
collection.remove(:_id => {'$in' => ids})
end
end
Expand Down

0 comments on commit af448ba

Please sign in to comment.