X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=openflowplugin-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fopenflowplugin%2Fimpl%2Fservices%2FAbstractSilentErrorService.java;h=727ccff8bb95e47682e7c4c8f4a7754c7d869cb4;hb=6d6e7a9dc55c36c8b9442b8fd469e6e68bd16809;hp=aa3039978f804df726ed60156f8e89e0bcfa929e;hpb=4bd0490ab17e8511bf2dc3e2b969c11a1c4b2447;p=openflowplugin.git diff --git a/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/services/AbstractSilentErrorService.java b/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/services/AbstractSilentErrorService.java index aa3039978f..727ccff8bb 100644 --- a/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/services/AbstractSilentErrorService.java +++ b/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/services/AbstractSilentErrorService.java @@ -23,7 +23,9 @@ import org.opendaylight.yangtools.yang.common.RpcResultBuilder; public abstract class AbstractSilentErrorService extends AbstractSimpleService { - protected AbstractSilentErrorService(RequestContextStack requestContextStack, DeviceContext deviceContext, Class clazz) { + protected AbstractSilentErrorService(RequestContextStack requestContextStack, + DeviceContext deviceContext, + Class clazz) { super(requestContextStack, deviceContext, clazz); } @@ -31,9 +33,8 @@ public abstract class AbstractSilentErrorService public ListenableFuture> handleServiceCall(@Nonnull I input, @Nullable final Function isComplete) { return Futures.catching( - super.handleServiceCall(input, isComplete), - Throwable.class, - t -> RpcResultBuilder.failed().build()); + super.handleServiceCall(input, isComplete), + Throwable.class, + t -> RpcResultBuilder.failed().build()); } - }