Fix a typo 57/55257/1
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 19 Apr 2017 15:55:46 +0000 (17:55 +0200)
committerRobert Varga <nite@hq.sk>
Wed, 19 Apr 2017 17:39:06 +0000 (17:39 +0000)
transacion -> transaction

Change-Id: I30b5b387dc9d21774798286984f67e46a2471e95
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/md/sal/dom/broker/impl/PingPongTransactionChain.java

index 6097b38bb223254fafb76509a903e604ac5b6209..c7e8ced21a4139b6d870dc4de1bb606834f4ad5f 100644 (file)
@@ -173,7 +173,7 @@ public final class PingPongTransactionChain implements DOMTransactionChain {
 
         if (!LOCKED_UPDATER.compareAndSet(this, null, newTx)) {
             delegateTx.cancel();
-            throw new IllegalStateException(String.format("New transaction %s raced with transacion %s", newTx, lockedTx));
+            throw new IllegalStateException(String.format("New transaction %s raced with transaction %s", newTx, lockedTx));
         }
 
         return newTx;