Fix checkstyle violations in sal-dom-spi
[controller.git] / opendaylight / md-sal / sal-dom-spi / src / main / java / org / opendaylight / controller / md / sal / dom / spi / ForwardingDOMRpcService.java
index 976d08623b79e6d9fca1700391485a0bd8a7d7d3..a9e87d05ca73654009bf40fd8c3ed826e106ecca 100644 (file)
@@ -26,7 +26,8 @@ public abstract class ForwardingDOMRpcService extends ForwardingObject implement
     protected abstract @Nonnull DOMRpcService delegate();
 
     @Override
-    public CheckedFuture<DOMRpcResult, DOMRpcException> invokeRpc(final SchemaPath type, final NormalizedNode<?, ?> input) {
+    public CheckedFuture<DOMRpcResult, DOMRpcException> invokeRpc(final SchemaPath type,
+            final NormalizedNode<?, ?> input) {
         return delegate().invokeRpc(type, input);
     }