BUG-731 : fixed pcep sonar warnings
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / TlvUtil.java
index c6ac9f94656a6601eed86c6ccbf6d99b77aeeaaf..2d15c8320ec6e5d5fd21e50e135460f5d9034f28 100644 (file)
@@ -11,11 +11,12 @@ import io.netty.buffer.ByteBuf;
 
 public final class TlvUtil {
 
-    protected static final int HEADER_SIZE = 4;
+    public static final int HEADER_SIZE = 4;
 
-    protected static final int PADDED_TO = 4;
+    public static final int PADDED_TO = 4;
 
     private TlvUtil() {
+        throw new UnsupportedOperationException();
     }
 
     public static void formatTlv(final int type,final ByteBuf body, final ByteBuf out) {