commit | 144eec52079e561ee32969c13ab4a1c7e69cf466 | [log] [tgz] |
---|---|---|
author | Ray Milkey <ray@onlab.us> | Fri Feb 20 11:22:32 2015 -0800 |
committer | Ray Milkey <ray@onlab.us> | Fri Feb 20 20:54:26 2015 +0000 |
tree | 49b7baa778ab8d69478c3bc07792e12e17042581 | |
parent | 2bfbad2d7aea6b84055055b9622511fd345a5ed3 [diff] |
Fix Javadoc warnings Change-Id: I366f2b9f3c11645a3392e0689619bfbad7a9eedd
diff --git a/core/api/src/main/java/org/onosproject/store/service/TransactionContext.java b/core/api/src/main/java/org/onosproject/store/service/TransactionContext.java index 4fbeeeb..b404bae 100644 --- a/core/api/src/main/java/org/onosproject/store/service/TransactionContext.java +++ b/core/api/src/main/java/org/onosproject/store/service/TransactionContext.java
@@ -56,9 +56,11 @@ /** * Creates a new transactional map. + * @param <K> key type + * @param <V> value type * @param mapName name of the transactional map. * @param serializer serializer to use for encoding/decoding keys and vaulues. * @return new Transactional Map. */ <K, V> TransactionalMap<K, V> createTransactionalMap(String mapName, Serializer serializer); -} \ No newline at end of file +}