Fix @see tags referencing int params that are now long
This commit is contained in:
@@ -508,7 +508,7 @@ public class Jedis extends BinaryJedis implements JedisCommands {
|
|||||||
*
|
*
|
||||||
* @see #incr(String)
|
* @see #incr(String)
|
||||||
* @see #decr(String)
|
* @see #decr(String)
|
||||||
* @see #incrBy(String, int)
|
* @see #incrBy(String, long)
|
||||||
*
|
*
|
||||||
* @param key
|
* @param key
|
||||||
* @param integer
|
* @param integer
|
||||||
@@ -536,8 +536,8 @@ public class Jedis extends BinaryJedis implements JedisCommands {
|
|||||||
* Time complexity: O(1)
|
* Time complexity: O(1)
|
||||||
*
|
*
|
||||||
* @see #incr(String)
|
* @see #incr(String)
|
||||||
* @see #incrBy(String, int)
|
* @see #incrBy(String, long)
|
||||||
* @see #decrBy(String, int)
|
* @see #decrBy(String, long)
|
||||||
*
|
*
|
||||||
* @param key
|
* @param key
|
||||||
* @return Integer reply, this commands will reply with the new value of key
|
* @return Integer reply, this commands will reply with the new value of key
|
||||||
@@ -564,7 +564,7 @@ public class Jedis extends BinaryJedis implements JedisCommands {
|
|||||||
*
|
*
|
||||||
* @see #incr(String)
|
* @see #incr(String)
|
||||||
* @see #decr(String)
|
* @see #decr(String)
|
||||||
* @see #decrBy(String, int)
|
* @see #decrBy(String, long)
|
||||||
*
|
*
|
||||||
* @param key
|
* @param key
|
||||||
* @param integer
|
* @param integer
|
||||||
@@ -591,9 +591,9 @@ public class Jedis extends BinaryJedis implements JedisCommands {
|
|||||||
* <p>
|
* <p>
|
||||||
* Time complexity: O(1)
|
* Time complexity: O(1)
|
||||||
*
|
*
|
||||||
* @see #incrBy(String, int)
|
* @see #incrBy(String, long)
|
||||||
* @see #decr(String)
|
* @see #decr(String)
|
||||||
* @see #decrBy(String, int)
|
* @see #decrBy(String, long)
|
||||||
*
|
*
|
||||||
* @param key
|
* @param key
|
||||||
* @return Integer reply, this commands will reply with the new value of key
|
* @return Integer reply, this commands will reply with the new value of key
|
||||||
@@ -1042,7 +1042,7 @@ public class Jedis extends BinaryJedis implements JedisCommands {
|
|||||||
* O(N) (with N being the length of the list), setting the first or last
|
* O(N) (with N being the length of the list), setting the first or last
|
||||||
* elements of the list is O(1).
|
* elements of the list is O(1).
|
||||||
*
|
*
|
||||||
* @see #lindex(String, int)
|
* @see #lindex(String, long)
|
||||||
*
|
*
|
||||||
* @param key
|
* @param key
|
||||||
* @param index
|
* @param index
|
||||||
@@ -1278,7 +1278,7 @@ public class Jedis extends BinaryJedis implements JedisCommands {
|
|||||||
/**
|
/**
|
||||||
* Return the members of a set resulting from the intersection of all the
|
* Return the members of a set resulting from the intersection of all the
|
||||||
* sets hold at the specified keys. Like in
|
* sets hold at the specified keys. Like in
|
||||||
* {@link #lrange(String, int, int) LRANGE} the result is sent to the client
|
* {@link #lrange(String, long, long) LRANGE} the result is sent to the client
|
||||||
* as a multi-bulk reply (see the protocol specification for more
|
* as a multi-bulk reply (see the protocol specification for more
|
||||||
* information). If just a single key is specified, then this command
|
* information). If just a single key is specified, then this command
|
||||||
* produces the same result as {@link #smembers(String) SMEMBERS}. Actually
|
* produces the same result as {@link #smembers(String) SMEMBERS}. Actually
|
||||||
@@ -1320,7 +1320,7 @@ public class Jedis extends BinaryJedis implements JedisCommands {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the members of a set resulting from the union of all the sets hold
|
* Return the members of a set resulting from the union of all the sets hold
|
||||||
* at the specified keys. Like in {@link #lrange(String, int, int) LRANGE}
|
* at the specified keys. Like in {@link #lrange(String, long, long) LRANGE}
|
||||||
* the result is sent to the client as a multi-bulk reply (see the protocol
|
* the result is sent to the client as a multi-bulk reply (see the protocol
|
||||||
* specification for more information). If just a single key is specified,
|
* specification for more information). If just a single key is specified,
|
||||||
* then this command produces the same result as {@link #smembers(String)
|
* then this command produces the same result as {@link #smembers(String)
|
||||||
|
|||||||
Reference in New Issue
Block a user