// no-op; changes are reported as soon as they come in
}
public boolean removeInferredStatement(Resource subj, URI pred, Value obj,
Resource... contexts) throws SailException {
Lock conLock = getSharedConnectionLock();
try {
verifyIsOpen();
Lock txnLock = getTransactionLock();
try {
autoStartTransaction();
int removeCount = removeStatements(subj, pred, obj, false, contexts);
return removeCount > 0;
}
finally {
txnLock.release();
}
}
finally {
conLock.release();
}