Skip to content

Commit

Permalink
docs: clean up Javadoc warnings (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsbodden authored Nov 3, 2022
1 parent a144039 commit 9e687e4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ public <T> List<String> getAllIds(String keyspace, Class<T> type) {
* @param type the desired target type.
* @param offset index value to start reading.
* @param rows maximum number or entities to return.
* @param <T>
* @param <T> the target type
* @return never {@literal null}.
* @since 2.5
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@ public class RedisJSONKeyValueAdapter extends RedisKeyValueAdapter {
* {@link RedisCustomConversions}.
*
* @param redisOps must not be {@literal null}.
* @param rmo must not be {@literal null}.
* @param mappingContext must not be {@literal null}.
* @param redisJSONOperations must not be {@literal null}.
* @param keyspaceToIndexMap must not be {@literal null}.
*/
@SuppressWarnings("unchecked")
public RedisJSONKeyValueAdapter(RedisOperations<?, ?> redisOps, RedisModulesOperations<?> rmo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public class RedisDocumentRepositoryFactory extends KeyValueRepositoryFactory {
* @param rmo must not be {@literal null}.
* @param keyspaceToIndexMap must not be {@literal null}.
* @param mappingContext must not be {@literal null}.
* @param gson must not be {@literal null}.
*/
public RedisDocumentRepositoryFactory( //
KeyValueOperations keyValueOperations, //
Expand All @@ -70,6 +71,7 @@ public RedisDocumentRepositoryFactory( //
* @param keyspaceToIndexMap must not be {@literal null}.
* @param queryCreator must not be {@literal null}.
* @param mappingContext must not be {@literal null}.
* @param gson must not be {@literal null}.
*/
public RedisDocumentRepositoryFactory( //
KeyValueOperations keyValueOperations, //
Expand All @@ -93,6 +95,7 @@ public RedisDocumentRepositoryFactory( //
* @param queryCreator must not be {@literal null}.
* @param repositoryQueryType must not be {@literal null}.
* @param mappingContext must not be {@literal null}.
* @param gson must not be {@literal null}.
*/
public RedisDocumentRepositoryFactory( //
KeyValueOperations keyValueOperations, //
Expand Down

0 comments on commit 9e687e4

Please sign in to comment.