Fix checkstyle violations in openflow-protocol-impl - part 2
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / OF10PortStatusMessageFactory.java
index 2bab42b6f76cf59dd615364ff2e9184aa61c8b64..89df5630fac2a7f1d047205e92b053c62c0be5c6 100644 (file)
@@ -18,7 +18,8 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.PortStatusMessageBuilder;
 
 /**
- * Translates PortStatus messages (OpenFlow v1.0)
+ * Translates PortStatus messages (OpenFlow v1.0).
+ *
  * @author michal.polkorab
  */
 public class OF10PortStatusMessageFactory implements OFDeserializer<PortStatusMessage> {
@@ -47,4 +48,4 @@ public class OF10PortStatusMessageFactory implements OFDeserializer<PortStatusMe
         builder.setSupportedFeaturesV10(OpenflowUtils.createPortFeatures(rawMessage.readUnsignedInt()));
         builder.setPeerFeaturesV10(OpenflowUtils.createPortFeatures(rawMessage.readUnsignedInt()));
     }
-}
\ No newline at end of file
+}