Skip to content

Commit 8f26c9d

Browse files
rbowenmp911de
authored andcommitted
Fix duplicate word occurrences #2307
1 parent 37c38fb commit 8f26c9d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/main/java/io/lettuce/core/ConcurrentLruCache.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ public int size() {
171171
}
172172

173173
/**
174-
* Return the the maximum number of entries in the cache (0 indicates no caching, always generating a new value).
174+
* Return the maximum number of entries in the cache (0 indicates no caching, always generating a new value).
175175
*
176176
* @see #size()
177177
*/

src/main/java/io/lettuce/core/SocketOptions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ private Builder() {
324324
}
325325

326326
/**
327-
* Set the the maximum number of keepalive probes TCP should send before dropping the connection. Defaults to
327+
* Set the maximum number of keepalive probes TCP should send before dropping the connection. Defaults to
328328
* {@code 9}. See also {@link #DEFAULT_COUNT} and {@code TCP_KEEPCNT}.
329329
*
330330
* @param count the maximum number of keepalive probes TCP

src/main/java/io/lettuce/core/metrics/MetricCollector.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface MetricCollector<T> {
3333
/**
3434
* Returns the collected/aggregated metrics.
3535
*
36-
* @return the the collected/aggregated metrics
36+
* @return the collected/aggregated metrics
3737
*/
3838
T retrieveMetrics();
3939

src/main/java/io/lettuce/core/protocol/CommandWrapper.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ public static <K, V, T> RedisCommand<K, V, T> unwrap(RedisCommand<K, V, T> wrapp
264264
*
265265
* If the receiver implements the interface then the result is the receiver or a proxy for the receiver. If the receiver is
266266
* a wrapper and the wrapped object implements the interface then the result is the wrapped object or a proxy for the
267-
* wrapped object. Otherwise return the the result of calling <code>unwrap</code> recursively on the wrapped object or a
267+
* wrapped object. Otherwise return the result of calling <code>unwrap</code> recursively on the wrapped object or a
268268
* proxy for that result. If the receiver is not a wrapper and does not implement the interface, then an {@code null} is
269269
* returned.
270270
*

0 commit comments

Comments
 (0)