Fix checkstyle a bit
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / api / BindingCodecTreeFactory.java
index 14505d085f9ec9cb3fa5c4b3141dc17bdad2f726..6ac1ddd1fadf4c4380fd5e9cd0a927b51ad669ff 100644 (file)
@@ -12,7 +12,6 @@ import org.opendaylight.mdsal.binding.generator.util.BindingRuntimeContext;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 
 public interface BindingCodecTreeFactory {
-
     /**
      * Creates Binding Codec Tree for specified Binding runtime context.
      *
@@ -36,6 +35,5 @@ public interface BindingCodecTreeFactory {
      * @return Binding Codec Tree for specified Binding runtime context.
      */
     @Beta
-   BindingCodecTree create(SchemaContext context, Class<?>... bindingClasses);
-
+    BindingCodecTree create(SchemaContext context, Class<?>... bindingClasses);
 }