Decompose RPC implementation classes
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / statistics / services / AllGroupsStatsService.java
index 075d5facb724bee15e46c4dc9ff3d8627a9fb838..e05369237bde7e1b36143914ffd4ae8f3d1a1d95 100644 (file)
@@ -43,7 +43,6 @@ final class AllGroupsStatsService extends
 
     private final ConvertorExecutor convertorExecutor;
 
-
     AllGroupsStatsService(final RequestContextStack requestContextStack, final DeviceContext deviceContext,
                           final AtomicLong compatibilityXidSeed, final ConvertorExecutor convertorExecutor) {
         super(requestContextStack, deviceContext, compatibilityXidSeed);
@@ -71,9 +70,7 @@ final class AllGroupsStatsService extends
     @Override
     public GroupStatisticsUpdated transformToNotification(final List<MultipartReply> result,
             final TransactionId emulatedTxId) {
-        return GroupStatisticsToNotificationTransformer.transformToNotification(result,
-                                                                                getDeviceInfo(),
-                                                                                emulatedTxId,
-                                                                                convertorExecutor);
+        return GroupStatisticsToNotificationTransformer.transformToNotification(result, getDeviceInfo(), emulatedTxId,
+            convertorExecutor);
     }
 }