[Fix] Fixed InMemoryTransaction marked committed on flush

This commit is contained in:
Robert von Burg 2017-05-09 12:30:53 +02:00
parent b302c3f19e
commit b68b74aade
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ public class InMemoryTransaction extends AbstractTransaction {
@Override
protected void writeChanges() throws Exception {
getTxResult().setState(TransactionState.COMMITTED);
// do nothing
}
@Override
@ -44,7 +44,7 @@ public class InMemoryTransaction extends AbstractTransaction {
@Override
protected void commit() throws Exception {
// no-op
getTxResult().setState(TransactionState.COMMITTED);
}
@Override