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();