Skip to content

Commit 9e687e4

Browse files
authored
docs: clean up Javadoc warnings (#121)
1 parent a144039 commit 9e687e4

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

redis-om-spring/src/main/java/com/redis/om/spring/RedisEnhancedKeyValueAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ public <T> List<String> getAllIds(String keyspace, Class<T> type) {
258258
* @param type the desired target type.
259259
* @param offset index value to start reading.
260260
* @param rows maximum number or entities to return.
261-
* @param <T>
261+
* @param <T> the target type
262262
* @return never {@literal null}.
263263
* @since 2.5
264264
*/

redis-om-spring/src/main/java/com/redis/om/spring/RedisJSONKeyValueAdapter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,9 @@ public class RedisJSONKeyValueAdapter extends RedisKeyValueAdapter {
5757
* {@link RedisCustomConversions}.
5858
*
5959
* @param redisOps must not be {@literal null}.
60+
* @param rmo must not be {@literal null}.
6061
* @param mappingContext must not be {@literal null}.
61-
* @param redisJSONOperations must not be {@literal null}.
62+
* @param keyspaceToIndexMap must not be {@literal null}.
6263
*/
6364
@SuppressWarnings("unchecked")
6465
public RedisJSONKeyValueAdapter(RedisOperations<?, ?> redisOps, RedisModulesOperations<?> rmo,

redis-om-spring/src/main/java/com/redis/om/spring/repository/support/RedisDocumentRepositoryFactory.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public class RedisDocumentRepositoryFactory extends KeyValueRepositoryFactory {
5050
* @param rmo must not be {@literal null}.
5151
* @param keyspaceToIndexMap must not be {@literal null}.
5252
* @param mappingContext must not be {@literal null}.
53+
* @param gson must not be {@literal null}.
5354
*/
5455
public RedisDocumentRepositoryFactory( //
5556
KeyValueOperations keyValueOperations, //
@@ -70,6 +71,7 @@ public RedisDocumentRepositoryFactory( //
7071
* @param keyspaceToIndexMap must not be {@literal null}.
7172
* @param queryCreator must not be {@literal null}.
7273
* @param mappingContext must not be {@literal null}.
74+
* @param gson must not be {@literal null}.
7375
*/
7476
public RedisDocumentRepositoryFactory( //
7577
KeyValueOperations keyValueOperations, //
@@ -93,6 +95,7 @@ public RedisDocumentRepositoryFactory( //
9395
* @param queryCreator must not be {@literal null}.
9496
* @param repositoryQueryType must not be {@literal null}.
9597
* @param mappingContext must not be {@literal null}.
98+
* @param gson must not be {@literal null}.
9699
*/
97100
public RedisDocumentRepositoryFactory( //
98101
KeyValueOperations keyValueOperations, //

0 commit comments

Comments
 (0)