Fix checkstyle a bit
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / api / BindingCodecTreeFactory.java
index e295f14b189cb36aa272df7aaf4b3d134a4ad8d2..6ac1ddd1fadf4c4380fd5e9cd0a927b51ad669ff 100644 (file)
@@ -11,11 +11,8 @@ import com.google.common.annotations.Beta;
 import org.opendaylight.mdsal.binding.generator.util.BindingRuntimeContext;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 
-public interface BindingCodecTreeFactory extends
-        org.opendaylight.yangtools.binding.data.codec.api.BindingCodecTreeFactory {
-
+public interface BindingCodecTreeFactory {
     /**
-     *
      * Creates Binding Codec Tree for specified Binding runtime context.
      *
      * @param context
@@ -23,11 +20,9 @@ public interface BindingCodecTreeFactory extends
      *            instantiated.
      * @return Binding Codec Tree for specified Binding runtime context.
      */
-    @Override
     BindingCodecTree create(BindingRuntimeContext context);
 
     /**
-     *
      * Creates Binding Codec Tree for specified Binding runtime context.
      *
      * @param context
@@ -39,8 +34,6 @@ public interface BindingCodecTreeFactory extends
      *            deserialization in multi-classloader environment.
      * @return Binding Codec Tree for specified Binding runtime context.
      */
-    @Override
     @Beta
-   BindingCodecTree create(SchemaContext context, Class<?>... bindingClasses);
-
+    BindingCodecTree create(SchemaContext context, Class<?>... bindingClasses);
 }