Fix eclipse/checkstyle warnings
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / AttributesContainer.java
index 7bbfb8828528a18e032c88e056273d4e46ee54d0..021f2b03786d3ed27cb8fe943696559213f33e73 100644 (file)
@@ -11,12 +11,9 @@ import java.util.Map;
 import org.opendaylight.yangtools.yang.common.QName;
 
 /**
- *
  * Container of attributes, which may be attached to nodes.
- *
  */
 public interface AttributesContainer {
-
     /**
      * Returns immutable map of QName and value of the attribute.
      *
@@ -25,12 +22,10 @@ public interface AttributesContainer {
     Map<QName, String> getAttributes();
 
     /**
-     * Returns attribute value by supplied QName
-     *
+     * Returns attribute value by supplied QName.
      *
      * @param name Attribute name
      * @return Value of attribute if present, null otherwise.
      */
     Object getAttributeValue(QName name);
-
 }