Enforce pcep-spi checkstyle
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / ObjectUtil.java
index 33d356fd5ce901734ef848defe4067f4fc19dcbd..096481123d2b500fb449cd2d1fdffd95aec67dd6 100644 (file)
@@ -22,17 +22,16 @@ public final class ObjectUtil {
     private static final int IGNORED = 3;
 
     private ObjectUtil() {
-        throw new UnsupportedOperationException();
     }
 
-    public static void formatSubobject(final int objectType, final int objectClass, final Boolean processingRule, final Boolean ignore,
-        final ByteBuf body, final ByteBuf out) {
+    public static void formatSubobject(final int objectType, final int objectClass, final Boolean processingRule,
+            final Boolean ignore, final ByteBuf body, final ByteBuf out) {
         out.writeByte(objectClass);
         final BitArray flags = new BitArray(FLAGS_SIZE);
         flags.set(IGNORED, ignore);
         flags.set(PROCESSED, processingRule);
         final byte flagB = flags.toByte();
-        final int typeByte = objectType << FLAGS_SIZE | (flagB & 0xff);
+        final int typeByte = objectType << FLAGS_SIZE | flagB & 0xff;
         out.writeByte(typeByte);
         out.writeShort(body.writerIndex() + HEADER_SIZE);
         out.writeBytes(body);