Checkstyle: fix issues and enforce on lisp-proto
[lispflowmapping.git] / mappingservice / lisp-proto / src / main / java / org / opendaylight / lispflowmapping / lisp / serializer / address / Ipv6PrefixSerializer.java
index d25ec5a5965ecebf67f1fc461e1542d2d8f1ac9e..ac8dc03128b8f89381806868d75d3b088f808ed9 100644 (file)
@@ -29,6 +29,8 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 /**
+ * Class to (de)serialize IPv6 prefixes from/to String representation.
+ *
  * @author Lorand Jakab
  *
  */
@@ -93,7 +95,7 @@ public final class Ipv6PrefixSerializer extends LispAddressSerializer {
     }
 
     private static org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv6Prefix
-    deserializeData(ByteBuffer buffer, LispAddressSerializerContext ctx) {
+            deserializeData(ByteBuffer buffer, LispAddressSerializerContext ctx) {
         byte[] ipBuffer = new byte[16];
         InetAddress address = null;
         buffer.get(ipBuffer);