Skip to content

Commit 864169d

Browse files
authored
update deprecation messages
1 parent df1b738 commit 864169d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/redis/clients/jedis/JedisPoolAbstract.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class JedisPoolAbstract extends Pool<Jedis> {
1515
/**
1616
* Using this constructor means you have to set and initialize the internalPool yourself.
1717
*
18-
* @deprecated
18+
* @deprecated This constructor will be removed in future.
1919
*/
2020
@Deprecated
2121
public JedisPoolAbstract() {

src/main/java/redis/clients/jedis/util/Pool.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public abstract class Pool<T> implements Closeable {
2222
/**
2323
* Using this constructor means you have to set and initialize the internalPool yourself.
2424
*
25-
* @deprecated This will be removed in future.
25+
* @deprecated This constructor will be removed in future.
2626
*/
2727
@Deprecated
2828
public Pool() {
@@ -44,7 +44,7 @@ public boolean isClosed() {
4444
/**
4545
* @param poolConfig
4646
* @param factory
47-
* @deprecated This will be private in future.
47+
* @deprecated This method will be private in future.
4848
*/
4949
@Deprecated
5050
public void initPool(final GenericObjectPoolConfig<T> poolConfig, PooledObjectFactory<T> factory) {

0 commit comments

Comments
 (0)