Fix checkstyle in mdsal-binding-dom-codec
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / api / BindingCodecTree.java
index 7fbd0f390ca6dfad40c3e250dd44cede4e4be4ba..4c3210722433cd59a77fd185155260e65584cbda 100644 (file)
@@ -14,25 +14,19 @@ import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
 
 /**
- *
- * Navigable tree representing hierarchy of Binding to Normalized Node codecs
- *
- * This navigable tree is associated to conrete set of YANG models, represented by SchemaContext and
- * provides access to subtree specific serialization context.
- *
- * TODO: Add more detailed documentation
- **/
-public interface BindingCodecTree extends org.opendaylight.yangtools.binding.data.codec.api.BindingCodecTree {
+ * Navigable tree representing hierarchy of Binding to Normalized Node codecs. This navigable tree is associated to
+ * a concrete set of YANG models, represented by SchemaContext and provides access to subtree specific serialization
+ * context.
+ */
+// TODO: Add more detailed documentation
+public interface BindingCodecTree {
 
-    @Override
     @Nullable
     <T extends DataObject> BindingCodecTreeNode<T> getSubtreeCodec(InstanceIdentifier<T> path);
 
-    @Override
     @Nullable
     BindingCodecTreeNode<?> getSubtreeCodec(YangInstanceIdentifier path);
 
-    @Override
     @Nullable
     BindingCodecTreeNode<?> getSubtreeCodec(SchemaPath path);