Fix checkstyle warnings for impl/protocol package
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / serialization / multipart / MultipartRequestMeterStatsSerializer.java
index a962e7d341b743d138546e6262ced0af00b44640..e9dca48dcffab9879e2a2238a5580fdb494ac429 100644 (file)
@@ -27,7 +27,8 @@ public class MultipartRequestMeterStatsSerializer implements OFSerializer<Multip
             .cast(multipartRequestBody);
 
         byteBuf.writeInt(MoreObjects
-            .firstNonNull(multipartRequestMeterStats.getMeterId(), new MeterId(OFConstants.OFPM_ALL)).getValue().intValue());
+            .firstNonNull(multipartRequestMeterStats.getMeterId(), new MeterId(OFConstants.OFPM_ALL))
+                .getValue().intValue());
         byteBuf.writeZero(PADDING_IN_MULTIPART_REQUEST_METER_BODY);
     }