Cleanup checkstyle in yang-{data,model}-api
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / stmt / TypeStatement.java
index 532d2e260c1fd066a02cb4cd680386e0587fd599..7d18f8f40cbbe34966a8b7abc6257c501793ef5d 100644 (file)
@@ -74,15 +74,19 @@ public interface TypeStatement extends DeclaredStatement<String> {
     interface IdentityRefSpecification extends TypeStatement {
 
         /**
+         * Returns the base identity.
          * @deprecated use {@link #getBases()} instead
          *
          * @return base statement
          */
-        @Deprecated @Nonnull BaseStatement getBase();
+        @Deprecated
+        @Nonnull BaseStatement getBase();
 
         /**
-         * @return collection of base statements (in YANG 1.1 models) or a collection containing just one base statement
-         * (in YANG 1.0 models)
+         * Returns the base statements.
+         *
+         * @return collection of base statements (in YANG 1.1 models) or a collection containing just one base
+         *         statement (in YANG 1.0 models)
          */
         @Nonnull Collection<? extends BaseStatement> getBases();
     }