Fix checkstyle violations in sal-dom-api
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / md / sal / dom / api / DOMTransactionChain.java
index 2d2fa48c058a4513a49f5504a70781f35695cb8e..446960ca058fea3aab958f4e10594ad1d9fe8012 100644 (file)
@@ -14,6 +14,7 @@ import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
 /**
  * A chain of DOM Data transactions.
  *
+ * <p>
  * Transactions in a chain need to be committed in sequence and each
  * transaction should see the effects of previous transactions as if they happened. A chain
  * makes no guarantees of atomicity, in fact transactions are committed as soon as possible.
@@ -31,5 +32,4 @@ public interface DOMTransactionChain extends TransactionChain<YangInstanceIdenti
 
     @Override
     DOMDataWriteTransaction newWriteOnlyTransaction();
-
 }