X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=dom%2Fmdsal-dom-inmemory-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fmdsal%2Fdom%2Fstore%2Finmemory%2FInMemoryDOMDataTreeShardProducer.java;h=6c0d2775c6c694299ed21edad103b6a5866f7456;hb=395348596fcc6296e1a9ed0d9899b5aa16f08625;hp=0d11ac6e25ead1c82f12b7c44cb282d507cca63d;hpb=c37d38386002ed12b279938051813f99a4de70ff;p=mdsal.git diff --git a/dom/mdsal-dom-inmemory-datastore/src/main/java/org/opendaylight/mdsal/dom/store/inmemory/InMemoryDOMDataTreeShardProducer.java b/dom/mdsal-dom-inmemory-datastore/src/main/java/org/opendaylight/mdsal/dom/store/inmemory/InMemoryDOMDataTreeShardProducer.java index 0d11ac6e25..6c0d2775c6 100644 --- a/dom/mdsal-dom-inmemory-datastore/src/main/java/org/opendaylight/mdsal/dom/store/inmemory/InMemoryDOMDataTreeShardProducer.java +++ b/dom/mdsal-dom-inmemory-datastore/src/main/java/org/opendaylight/mdsal/dom/store/inmemory/InMemoryDOMDataTreeShardProducer.java @@ -29,7 +29,7 @@ final class InMemoryDOMDataTreeShardProducer implements DOMDataTreeShardProducer @Override public InmemoryDOMDataTreeShardWriteTransaction createTransaction() { - Preconditions.checkState(currentTx == null || currentTx.isFinished(), "Previous transaction not finished yet."); +// Preconditions.checkState(currentTx == null || currentTx.isFinished(), "Previous transaction not finished yet."); if (lastSubmittedTx != null) { currentTx = parentShard.createTransaction(lastSubmittedTx); } else {