diff --git a/core/main/java/com/codingchili/core/storage/JsonMap.java b/core/main/java/com/codingchili/core/storage/JsonMap.java index e1891a1d..999800bc 100644 --- a/core/main/java/com/codingchili/core/storage/JsonMap.java +++ b/core/main/java/com/codingchili/core/storage/JsonMap.java @@ -40,7 +40,7 @@ public class JsonMap implements AsyncStorage { * to use the storage loader instead of invoking this constructor. * * @param future completed when the storage is loaded and ready. - * @param context + * @param context contains metadata about the stored objects. */ public JsonMap(Future> future, StorageContext context) { this.context = context; diff --git a/core/main/java/com/codingchili/core/storage/SharedMap.java b/core/main/java/com/codingchili/core/storage/SharedMap.java index d15ea649..3f7eb544 100644 --- a/core/main/java/com/codingchili/core/storage/SharedMap.java +++ b/core/main/java/com/codingchili/core/storage/SharedMap.java @@ -27,7 +27,7 @@ public class SharedMap implements AsyncStorage { * multiple workers/verticles. It's recommended to use the storage loader to instantiate it. * * @param future completed when the storage is ready. - * @param context the storage context to set up file locations etc. + * @param context the storage context contains metadata about the stored objects. */ public SharedMap(Future> future, StorageContext context) { this.context = context;