commit | 6e0d1471939c7dd64cc1e545e7a3498d5a742c98 | [log] [tgz] |
---|---|---|
author | Madan Jampani <madan@onlab.us> | Tue Mar 24 12:13:44 2015 -0700 |
committer | Gerrit Code Review <gerrit@onlab.us> | Tue Mar 24 20:05:52 2015 +0000 |
tree | b19c320dbb96cce393e3d52b4aaf0a055d942779 | |
parent | f15511b82670b931b896a1337e6e6d7b27eb9678 [diff] |
Fixes a javadoc warning Change-Id: I0da1e4bd229940bbf6d64f12349f134aae326f4b
diff --git a/core/api/src/main/java/org/onosproject/store/service/AsyncConsistentMap.java b/core/api/src/main/java/org/onosproject/store/service/AsyncConsistentMap.java index c31c1fa..f58f5d5 100644 --- a/core/api/src/main/java/org/onosproject/store/service/AsyncConsistentMap.java +++ b/core/api/src/main/java/org/onosproject/store/service/AsyncConsistentMap.java
@@ -17,8 +17,8 @@ package org.onosproject.store.service; import java.util.Collection; -import java.util.Set; import java.util.Map.Entry; +import java.util.Set; import java.util.concurrent.CompletableFuture; /** @@ -107,6 +107,7 @@ /** * Removes all of the mappings from this map (optional operation). * The map will be empty after this call returns. + * @return future that will be successfully completed when the map is cleared */ CompletableFuture<Void> clear();