Fix checkstyle violations in sal-common-api
[controller.git] / opendaylight / md-sal / sal-common-api / src / main / java / org / opendaylight / controller / md / sal / common / api / data / AsyncDataTransactionFactory.java
index a558b96b2d56fa26658741d8ee11ac63f3e735a3..22fa5ff9e489f23467ecd5a8f0991dcccb10b606 100644 (file)
@@ -48,7 +48,8 @@ import org.opendaylight.yangtools.concepts.Path;
  * implementations may optimize the transaction for reading if they know ahead
  * of time that you only need to read data - such as not keeping additional meta-data,
  * which may be required for write transactions.
- *<p>
+ *
+ * <p>
  * <b>Implementation Note:</b> This interface is not intended to be implemented
  * by users of MD-SAL, but only to be consumed by them.
  *
@@ -64,9 +65,9 @@ import org.opendaylight.yangtools.concepts.Path;
 public interface AsyncDataTransactionFactory<P extends Path<P>, D> {
 
     /**
-     * Allocates a new read-only transaction which provides an immutable snapshot of
-     * the data tree.
-     *<p>
+     * Allocates a new read-only transaction which provides an immutable snapshot of the data tree.
+     *
+     * <p>
      * The view of data tree is an immutable snapshot of current data tree state when
      * transaction was allocated.
      *
@@ -107,6 +108,7 @@ public interface AsyncDataTransactionFactory<P extends Path<P>, D> {
      * used only by callers which are exclusive writers (exporters of data)
      * to the subtree they modify. This prevents optimistic
      * lock failures as described in {@link AsyncWriteTransaction#commit()}.
+     *
      * <p>
      * Exclusivity of writers to particular subtree SHOULD BE enforced by
      * external locking mechanism.