Merge "Rename checkSubtreeModificationApplicable()"
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / Mutable.java
index 60c10352df54531df49221d6f312319d99b9f6bc..82b2bb11571f8da41e8ef9f894b766c8f46e1009 100644 (file)
@@ -9,13 +9,13 @@ 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.
- * 
- * @author Tony Tkacik <ttkacik@cisco.com>
+ *
+ * @author Tony Tkacik
  *
  */
-public interface Mutable extends MutationBehaviour<Mutable>{
-    
+public interface Mutable extends MutationBehaviour<Mutable> {
+
 }