Fix checkstyle warnings
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / md / core / IMDMessageTranslator.java
index d91014e4943dbbbd3c5f2736e8c9e4a4ae7110bb..d03f20d1c9a2e496d4b6059f47aba231a5c3e39c 100644 (file)
@@ -10,7 +10,7 @@ package org.opendaylight.openflowplugin.api.openflow.md.core;
 import org.opendaylight.openflowplugin.api.openflow.md.core.session.SessionContext;
 
 /**
- * translates between messages
+ * translates between messages.
  * @param <I> source message type (IN)
  * @param <O> result message type (OUT)
  */
@@ -18,14 +18,9 @@ public interface IMDMessageTranslator<I, O> {
 
     /**
      * This method is called in order to translate message to MD-SAL or from MD-SAL.
-     *
-     * @param cookie
-     *            auxiliary connection identifier
-     * @param sc
-     *            The SessionContext which sent the OF message
-     * @param msg
-     *            The OF message
-     *
+     * @param cookie auxiliary connection identifier
+     * @param sc The SessionContext which sent the OF message
+     * @param msg The OF message
      * @return translated message
      */
     O translate(SwitchConnectionDistinguisher cookie, SessionContext sc, I msg);