Skip to content

Commit

Permalink
Minor javadoc fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Duda committed Aug 9, 2019
1 parent 9480fba commit 56a65ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/main/java/com/codingchili/core/storage/JsonMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class JsonMap<Value extends Storable> implements AsyncStorage<Value> {
* 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<AsyncStorage<Value>> future, StorageContext<Value> context) {
this.context = context;
Expand Down
2 changes: 1 addition & 1 deletion core/main/java/com/codingchili/core/storage/SharedMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class SharedMap<Value extends Storable> implements AsyncStorage<Value> {
* 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<AsyncStorage<Value>> future, StorageContext<Value> context) {
this.context = context;
Expand Down

0 comments on commit 56a65ae

Please sign in to comment.