Brian O'Connor

Javadoc fixes in Versioned and TransactionManager

Change-Id: If4a8245aabfadaba15261aa3a4c90c6632cb73a3
...@@ -91,6 +91,7 @@ public class Versioned<V> { ...@@ -91,6 +91,7 @@ public class Versioned<V> {
91 * Maps this instance into another after transforming its 91 * Maps this instance into another after transforming its
92 * value while retaining the same version and creationTime. 92 * value while retaining the same version and creationTime.
93 * @param transformer function to mapping the value 93 * @param transformer function to mapping the value
94 + * @param <U> Versioned return type
94 * @return mapped instance 95 * @return mapped instance
95 */ 96 */
96 public <U> Versioned<U> map(Function<V, U> transformer) { 97 public <U> Versioned<U> map(Function<V, U> transformer) {
......
...@@ -59,6 +59,7 @@ public class TransactionManager { ...@@ -59,6 +59,7 @@ public class TransactionManager {
59 * Constructs a new TransactionManager for the specified database instance. 59 * Constructs a new TransactionManager for the specified database instance.
60 * 60 *
61 * @param database database 61 * @param database database
62 + * @param mapBuilder map builder
62 */ 63 */
63 public TransactionManager(Database database, ConsistentMapBuilder<Long, Transaction> mapBuilder) { 64 public TransactionManager(Database database, ConsistentMapBuilder<Long, Transaction> mapBuilder) {
64 this.database = checkNotNull(database, "database cannot be null"); 65 this.database = checkNotNull(database, "database cannot be null");
......