Method: ActiveTriples::BufferedTransaction#delete_statement
- Defined in:
- lib/active_triples/util/buffered_transaction.rb
#delete_statement(statement) ⇒ Object
Adds statement to the deletes collection of the buffered changeset and updates the snapshot.
89 90 91 92 93 |
# File 'lib/active_triples/util/buffered_transaction.rb', line 89 def delete_statement(statement) @changes.delete(statement) @changes.inserts.delete(statement) super end |