Fix javadocs and enable doclint
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / md / sal / binding / api / DataObjectModification.java
index 3dc6e4030f56953620ab8762ecae7c32d4ffbd74..f8dd3b0cceed32e7dacfdf2e37adb998ff92f087 100644 (file)
@@ -3,8 +3,9 @@
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html.
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
+
 package org.opendaylight.controller.md.sal.binding.api;
 
 import java.util.Collection;
@@ -68,7 +69,6 @@ public interface DataObjectModification<T extends DataObject> extends org.openda
      * Returns before-state of top level container. Implementations are encouraged,
      * but not required to provide this state.
      *
-     * @param root Class representing data container
      * @return State of object before modification. Null if subtree was not present,
      *         or the implementation cannot provide the state.
      */
@@ -77,7 +77,6 @@ public interface DataObjectModification<T extends DataObject> extends org.openda
     /**
      * Returns after-state of top level container.
      *
-     * @param root Class representing data container
      * @return State of object after modification. Null if subtree is not present.
      */
     @Nullable T getDataAfter();