Merge "Bug 611 - NlriReg supports serialization"
[bgpcep.git] / bgp / parser-spi / src / main / java / org / opendaylight / protocol / bgp / parser / spi / CapabilityUtil.java
index 67e527665247627122574c3c1e9d4ad54f565a81..4eea55ff276f2875bccb28ad8e2a60e4d9e5e866 100644 (file)
@@ -7,23 +7,23 @@
  */
 package org.opendaylight.protocol.bgp.parser.spi;
 
-import org.opendaylight.protocol.util.ByteArray;
-
 import com.google.common.primitives.UnsignedBytes;
 
+import org.opendaylight.protocol.util.ByteArray;
+
 public final class CapabilityUtil {
 
-       private static final int HEADER_SIZE = 2;
+    private static final int HEADER_SIZE = 2;
 
-       private CapabilityUtil() {
+    private CapabilityUtil() {
 
-       }
+    }
 
-       public static byte[] formatCapability(final int code, final byte[] value) {
-               final byte[] ret = new byte[HEADER_SIZE + value.length];
-               ret[0] = UnsignedBytes.checkedCast(code);
-               ret[1] = UnsignedBytes.checkedCast(value.length);
-               ByteArray.copyWhole(value, ret, HEADER_SIZE);
-               return ret;
-       }
+    public static byte[] formatCapability(final int code, final byte[] value) {
+        final byte[] ret = new byte[HEADER_SIZE + value.length];
+        ret[0] = UnsignedBytes.checkedCast(code);
+        ret[1] = UnsignedBytes.checkedCast(value.length);
+        ByteArray.copyWhole(value, ret, HEADER_SIZE);
+        return ret;
+    }
 }