Fix Jdk8 compatibility
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / device / RequestFutureContext.java
index dac4ff32a6bd9e5e14895d6f142eaeb78b4a853e..caabf07d67d08dd64feced521c1f7ec4c691a164 100644 (file)
@@ -13,16 +13,15 @@ import org.opendaylight.yangtools.yang.binding.DataObject;
 import org.opendaylight.yangtools.yang.common.RpcResult;
 
 /**
- * Created by Martin Bobak <mbobak@cisco.com> on 25.3.2015.
+ * Created by Martin Bobak &lt;mbobak@cisco.com&gt; on 25.3.2015.
+ * @param <T>
  */
 public interface RequestFutureContext<T extends DataObject> {
 
     /**
      * Method returns future to be used for handling device requests.
      *
-     * @param <T>
      * @return
      */
     SettableFuture<RpcResult<T>> getFuture();
-
 }