We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 712c328 commit 1f520c9Copy full SHA for 1f520c9
src/main/java/io/engagingspaces/vertx/dataloader/DataLoaderOptions.java
@@ -16,7 +16,6 @@
16
17
package io.engagingspaces.vertx.dataloader;
18
19
-import io.vertx.core.Future;
20
import io.vertx.core.json.JsonObject;
21
22
import java.util.Objects;
@@ -154,7 +153,7 @@ public Optional<CacheMap> cacheMap() {
154
153
* @param cacheMap the cache map instance
155
* @return the data loader options for fluent coding
156
*/
157
- public <K, V> DataLoaderOptions setCacheMap(CacheMap<K, Future<V>> cacheMap) {
+ public DataLoaderOptions setCacheMap(CacheMap cacheMap) {
158
this.cacheMap = cacheMap;
159
return this;
160
}
0 commit comments