Skip to content

Commit 0514b24

Browse files
committed
improve kotlin api generator to generate replacement for a deprecated method, typo fix
1 parent 31f8635 commit 0514b24

15 files changed

+42
-27
lines changed

src/main/java/io/lettuce/core/api/async/RedisScriptingAsyncCommands.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public interface RedisScriptingAsyncCommands<K, V> {
124124
/**
125125
* Remove all the scripts from the script cache using the specified {@link FlushMode}.
126126
*
127-
* @param flushMode the flush mode (sync/asnync).
127+
* @param flushMode the flush mode (sync/async).
128128
* @return String simple-string-reply.
129129
* @since 6.1
130130
*/

src/main/java/io/lettuce/core/api/async/RedisServerAsyncCommands.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ public interface RedisServerAsyncCommands<K, V> {
284284
/**
285285
* Remove all keys from all databases using the specified {@link FlushMode}.
286286
*
287-
* @param flushMode the flush mode (sync/asnync).
287+
* @param flushMode the flush mode (sync/async).
288288
* @return String simple-string-reply.
289289
* @since 6.1
290290
*/
@@ -309,7 +309,7 @@ public interface RedisServerAsyncCommands<K, V> {
309309
/**
310310
* Remove all keys from the current database using the specified {@link FlushMode}.
311311
*
312-
* @param flushMode the flush mode (sync/asnync).
312+
* @param flushMode the flush mode (sync/async).
313313
* @return String simple-string-reply.
314314
* @since 6.1
315315
*/

src/main/java/io/lettuce/core/api/reactive/RedisScriptingReactiveCommands.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public interface RedisScriptingReactiveCommands<K, V> {
123123
/**
124124
* Remove all the scripts from the script cache using the specified {@link FlushMode}.
125125
*
126-
* @param flushMode the flush mode (sync/asnync).
126+
* @param flushMode the flush mode (sync/async).
127127
* @return String simple-string-reply.
128128
* @since 6.1
129129
*/

src/main/java/io/lettuce/core/api/reactive/RedisServerReactiveCommands.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ public interface RedisServerReactiveCommands<K, V> {
284284
/**
285285
* Remove all keys from all databases using the specified {@link FlushMode}.
286286
*
287-
* @param flushMode the flush mode (sync/asnync).
287+
* @param flushMode the flush mode (sync/async).
288288
* @return String simple-string-reply.
289289
* @since 6.1
290290
*/
@@ -309,7 +309,7 @@ public interface RedisServerReactiveCommands<K, V> {
309309
/**
310310
* Remove all keys from the current database using the specified {@link FlushMode}.
311311
*
312-
* @param flushMode the flush mode (sync/asnync).
312+
* @param flushMode the flush mode (sync/async).
313313
* @return String simple-string-reply.
314314
* @since 6.1
315315
*/

src/main/java/io/lettuce/core/api/sync/RedisScriptingCommands.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public interface RedisScriptingCommands<K, V> {
123123
/**
124124
* Remove all the scripts from the script cache using the specified {@link FlushMode}.
125125
*
126-
* @param flushMode the flush mode (sync/asnync).
126+
* @param flushMode the flush mode (sync/async).
127127
* @return String simple-string-reply.
128128
* @since 6.1
129129
*/

src/main/java/io/lettuce/core/api/sync/RedisServerCommands.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ public interface RedisServerCommands<K, V> {
283283
/**
284284
* Remove all keys from all databases using the specified {@link FlushMode}.
285285
*
286-
* @param flushMode the flush mode (sync/asnync).
286+
* @param flushMode the flush mode (sync/async).
287287
* @return String simple-string-reply.
288288
* @since 6.1
289289
*/
@@ -308,7 +308,7 @@ public interface RedisServerCommands<K, V> {
308308
/**
309309
* Remove all keys from the current database using the specified {@link FlushMode}.
310310
*
311-
* @param flushMode the flush mode (sync/asnync).
311+
* @param flushMode the flush mode (sync/async).
312312
* @return String simple-string-reply.
313313
* @since 6.1
314314
*/

src/main/java/io/lettuce/core/cluster/api/async/NodeSelectionScriptingAsyncCommands.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public interface NodeSelectionScriptingAsyncCommands<K, V> {
123123
/**
124124
* Remove all the scripts from the script cache using the specified {@link FlushMode}.
125125
*
126-
* @param flushMode the flush mode (sync/asnync).
126+
* @param flushMode the flush mode (sync/async).
127127
* @return String simple-string-reply.
128128
* @since 6.1
129129
*/

src/main/java/io/lettuce/core/cluster/api/async/NodeSelectionServerAsyncCommands.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ public interface NodeSelectionServerAsyncCommands<K, V> {
269269
/**
270270
* Remove all keys from all databases using the specified {@link FlushMode}.
271271
*
272-
* @param flushMode the flush mode (sync/asnync).
272+
* @param flushMode the flush mode (sync/async).
273273
* @return String simple-string-reply.
274274
* @since 6.1
275275
*/
@@ -294,7 +294,7 @@ public interface NodeSelectionServerAsyncCommands<K, V> {
294294
/**
295295
* Remove all keys from the current database using the specified {@link FlushMode}.
296296
*
297-
* @param flushMode the flush mode (sync/asnync).
297+
* @param flushMode the flush mode (sync/async).
298298
* @return String simple-string-reply.
299299
* @since 6.1
300300
*/

src/main/java/io/lettuce/core/cluster/api/sync/NodeSelectionScriptingCommands.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public interface NodeSelectionScriptingCommands<K, V> {
123123
/**
124124
* Remove all the scripts from the script cache using the specified {@link FlushMode}.
125125
*
126-
* @param flushMode the flush mode (sync/asnync).
126+
* @param flushMode the flush mode (sync/async).
127127
* @return String simple-string-reply.
128128
* @since 6.1
129129
*/

src/main/java/io/lettuce/core/cluster/api/sync/NodeSelectionServerCommands.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ public interface NodeSelectionServerCommands<K, V> {
269269
/**
270270
* Remove all keys from all databases using the specified {@link FlushMode}.
271271
*
272-
* @param flushMode the flush mode (sync/asnync).
272+
* @param flushMode the flush mode (sync/async).
273273
* @return String simple-string-reply.
274274
* @since 6.1
275275
*/
@@ -294,7 +294,7 @@ public interface NodeSelectionServerCommands<K, V> {
294294
/**
295295
* Remove all keys from the current database using the specified {@link FlushMode}.
296296
*
297-
* @param flushMode the flush mode (sync/asnync).
297+
* @param flushMode the flush mode (sync/async).
298298
* @return String simple-string-reply.
299299
* @since 6.1
300300
*/

0 commit comments

Comments
 (0)