Fix checkstyle errors and activate enforcement for concepts
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / Mutable.java
index 82b2bb11571f8da41e8ef9f894b766c8f46e1009..f6f2893f7222136494c459275fe88da71b9f6f6e 100644 (file)
@@ -8,13 +8,10 @@
 package org.opendaylight.yangtools.concepts;
 
 /**
- * Mutable object - object may change it's state during lifecycle.
- *
- * This interface is mutually exclusive with {@link Immutable}  and other
- * {@link MutationBehaviour}s.
+ * Mutable object - object may change it's state during lifecycle. This interface is mutually exclusive
+ * with {@link Immutable} and other {@link MutationBehaviour}s.
  *
  * @author Tony Tkacik
- *
  */
 public interface Mutable extends MutationBehaviour<Mutable> {