Fix checkstyle a bit 35/87835/1
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 17 Feb 2020 16:55:45 +0000 (17:55 +0100)
committerRobert Varga <nite@hq.sk>
Mon, 17 Feb 2020 17:15:23 +0000 (17:15 +0000)
We have a misaligned method here, fix that up.

Change-Id: Iff4ad3e9a5c2da1e64f73f8b3dfaf78d77b1db85
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
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);
 }