Committed by
Gerrit Code Review
Fixes a javadoc warning
Change-Id: I0da1e4bd229940bbf6d64f12349f134aae326f4b
Showing
1 changed file
with
2 additions
and
1 deletions
| ... | @@ -17,8 +17,8 @@ | ... | @@ -17,8 +17,8 @@ |
| 17 | package org.onosproject.store.service; | 17 | package org.onosproject.store.service; |
| 18 | 18 | ||
| 19 | import java.util.Collection; | 19 | import java.util.Collection; |
| 20 | -import java.util.Set; | ||
| 21 | import java.util.Map.Entry; | 20 | import java.util.Map.Entry; |
| 21 | +import java.util.Set; | ||
| 22 | import java.util.concurrent.CompletableFuture; | 22 | import java.util.concurrent.CompletableFuture; |
| 23 | 23 | ||
| 24 | /** | 24 | /** |
| ... | @@ -107,6 +107,7 @@ public interface AsyncConsistentMap<K, V> { | ... | @@ -107,6 +107,7 @@ public interface AsyncConsistentMap<K, V> { |
| 107 | /** | 107 | /** |
| 108 | * Removes all of the mappings from this map (optional operation). | 108 | * Removes all of the mappings from this map (optional operation). |
| 109 | * The map will be empty after this call returns. | 109 | * The map will be empty after this call returns. |
| 110 | + * @return future that will be successfully completed when the map is cleared | ||
| 110 | */ | 111 | */ |
| 111 | CompletableFuture<Void> clear(); | 112 | CompletableFuture<Void> clear(); |
| 112 | 113 | ... | ... |
-
Please register or login to post a comment