Enable checkstyle in yang-model-util
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / AbstractDerivedType.java
index f28e62fa7e57e0c91a6b1439d491613f4277cab4..c195878b710b892f918641e14c2ebac031daf5ff 100644 (file)
@@ -25,7 +25,8 @@ abstract class AbstractDerivedType<T extends TypeDefinition<T>> extends Abstract
     private final String units;
 
     AbstractDerivedType(final T baseType, final SchemaPath path, final Object defaultValue, final String description,
-            final String reference, final Status status, final String units, final Collection<UnknownSchemaNode> unknownSchemNodes) {
+            final String reference, final Status status, final String units,
+            final Collection<UnknownSchemaNode> unknownSchemNodes) {
         super(path, unknownSchemNodes);
         this.baseType = Preconditions.checkNotNull(baseType);
         this.status = Preconditions.checkNotNull(status);
@@ -42,8 +43,6 @@ abstract class AbstractDerivedType<T extends TypeDefinition<T>> extends Abstract
 
     /**
      * Return the stored base type. Unlike {@link #getBaseType()}, this method returns the underlying restricted type.
-     *
-     * @return
      */
     final T baseType() {
         return baseType;