Bug 4098 - ofoverlay-renderer failure in jdk8
[groupbasedpolicy.git] / renderers / ofoverlay / src / main / java / org / opendaylight / groupbasedpolicy / renderer / ofoverlay / arp / Arp.java
index 69848eb5507f11d4e268f8ee745b009e163697f1..9306a9d1ac991fbb1ef7b2d3edbeb2b9a53cce07 100644 (file)
@@ -126,7 +126,9 @@ public class Arp extends Packet {
     }
 
     /**
+     *
      * @param value hardware length in Bytes
+     * @return {@link Arp}
      */
     public Arp setHardwareLength(short value) {
         hdrFieldsMap.put(HLEN, Unpooled.buffer(1).writeByte(value).array());
@@ -134,7 +136,9 @@ public class Arp extends Packet {
     }
 
     /**
+     *
      * @param value protocol length in Bytes
+     * @return {@link Arp}
      */
     public Arp setProtocolLength(short value) {
         hdrFieldsMap.put(PLEN, Unpooled.buffer(1).writeByte(value).array());