Fix javadoc reference 64/13864/2
authorRobert Varga <rovarga@cisco.com>
Thu, 25 Dec 2014 09:34:24 +0000 (10:34 +0100)
committerRobert Varga <rovarga@cisco.com>
Wed, 7 Jan 2015 10:24:09 +0000 (11:24 +0100)
Javadoc points to a controller package, where this code originated. Make
sure the pointer is uptodate.

Change-Id: I92271808f7b0763700997279482d52886a94db93
Signed-off-by: Robert Varga <rovarga@cisco.com>
yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/ModifiedNode.java

index 9522802cf8d4474207b3de169f6dfbd749b2a3c4..da21aa52619af5a241b7a60851b84acd60f04831 100644 (file)
@@ -30,7 +30,7 @@ import org.opendaylight.yangtools.yang.data.api.schema.tree.spi.TreeNode;
  * to the data store tree.
  *
  * This tree is lazily created and populated via {@link #modifyChild(PathArgument)}
- * and {@link StoreMetadataNode} which represents original state {@link #getOriginal()}.
+ * and {@link TreeNode} which represents original state as tracked by {@link #getOriginal()}.
  */
 @NotThreadSafe
 final class ModifiedNode extends NodeModification implements StoreTreeNode<ModifiedNode> {
@@ -119,14 +119,14 @@ final class ModifiedNode extends NodeModification implements StoreTreeNode<Modif
 
     /**
      *
-     * Returns child modification if child was modified, creates {@link org.opendaylight.controller.md.sal.dom.store.impl.tree.data.ModifiedNode}
+     * Returns child modification if child was modified, creates {@link ModifiedNode}
      * for child otherwise.
      *
      * If this node's {@link ModificationType} is {@link ModificationType#UNMODIFIED}
      * changes modification type to {@link ModificationType#SUBTREE_MODIFIED}
      *
      * @param child
-     * @return {@link org.opendaylight.controller.md.sal.dom.store.impl.tree.data.ModifiedNode} for specified child, with {@link #getOriginal()}
+     * @return {@link ModifiedNode} for specified child, with {@link #getOriginal()}
      *         containing child metadata if child was present in original data.
      */
     ModifiedNode modifyChild(final PathArgument child, final boolean isOrdered) {