Fix eclipse/checkstyle warnings
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / MapNode.java
index e5631d4e7f387d65e1310c1de88069d074258d86..fc602d56331ea0dee438aa93a39cf73ee8d03de7 100644 (file)
@@ -15,14 +15,12 @@ import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdent
  * Containment node, which contains {@link MapEntryNode} of the same type, which may
  * be quickly retrieved using key.
  *
+ * <p>
  * This node maps to the list node in YANG schema, schema and semantics of this node,
  * its children and key construction is  defined by YANG <code>list</code>
  * statement and its <code>key</code> and <code>ordered-by</code> substatements.
- *
  */
-public interface MapNode extends //
-        MixinNode,
-        DataContainerChild<NodeIdentifier, Collection<MapEntryNode>>,
+public interface MapNode extends MixinNode, DataContainerChild<NodeIdentifier, Collection<MapEntryNode>>,
         NormalizedNodeContainer<NodeIdentifier, NodeIdentifierWithPredicates, MapEntryNode> {
 
 }