Fixing sonar issues 2
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / type / BinaryTypeDefinition.java
index 27856a42c5787eb31ad339aaa344ff3ed846fcd3..8d87fca7735456afd225f7886c77d9c60d630d4c 100644 (file)
@@ -20,23 +20,22 @@ import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
  * 4</a>). <br>
  * The canonical form of a binary value follows the rules in <a
  * href="https://tools.ietf.org/html/rfc4648">[RFC4648]</a>.
- *
+ * 
  * <br>
  * <br>
  * This interface was modeled according to definition in <a
  * href="https://tools.ietf.org/html/rfc6020#section-9.8">[RFC-6020] The binary
  * Built-In Type</a>
- *
+ * 
  */
-public interface BinaryTypeDefinition extends
-        TypeDefinition<BinaryTypeDefinition> {
+public interface BinaryTypeDefinition extends TypeDefinition<BinaryTypeDefinition> {
 
     /**
      * Returns List of number of octets that binary value contains.
-     *
+     * 
      * @return List of number of octets that binary value contains.
-     *
+     * 
      * @see LengthConstraint
      */
-    public List<LengthConstraint> getLengthConstraints();
+    List<LengthConstraint> getLengthConstraints();
 }