Fix checkstyle in yang-parser-spi
[yangtools.git] / yang / yang-parser-spi / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / ModelProcessingPhase.java
index 3fe2ccc0f110040d9de60f24b9ba9776cfa24111..1f7922ab708ca0145497869b6d05a3e555fafa5d 100644 (file)
@@ -11,24 +11,25 @@ import javax.annotation.Nullable;
 
 public enum ModelProcessingPhase {
     INIT(null),
+
     /**
-     *
      * Preliminary cross-source relationship resolution phase which collects
      * available module names and module namespaces. It is necessary in order to
      * correct resolution of unknown statements used in linkage phase (e.g.
      * semantic version of yang modules).
      */
     SOURCE_PRE_LINKAGE(INIT),
+
     /**
-     *
      * Cross-source relationship resolution phase.
+     *
      * <p>
-     * In this phase of processing only statements which affects cross-source
-     * relationship (e.g. imports / includes) are processed.
+     * In this phase of processing only statements which affects cross-source relationship (e.g. imports / includes)
+     * are processed.
+     *
      * <p>
-     * At end of this phase all source related contexts should be bind to their
-     * imports and includes to allow visibility of custom defined statements in
-     * following phases.
+     * At end of this phase all source related contexts should be bind to their imports and includes to allow
+     * visibility of custom defined statements in subsequent phases.
      */
     SOURCE_LINKAGE(SOURCE_PRE_LINKAGE),
     STATEMENT_DEFINITION(SOURCE_LINKAGE),