Fix @see tags referencing int params that are now long

This commit is contained in:
Kevin Sawicki
2011-06-23 16:49:28 -07:00
parent 6c3ec9fc14
commit 234336b58b

View File

@@ -508,7 +508,7 @@ public class Jedis extends BinaryJedis implements JedisCommands {
*
* @see #incr(String)
* @see #decr(String)
* @see #incrBy(String, int)
* @see #incrBy(String, long)
*
* @param key
* @param integer
@@ -536,8 +536,8 @@ public class Jedis extends BinaryJedis implements JedisCommands {
* Time complexity: O(1)
*
* @see #incr(String)
* @see #incrBy(String, int)
* @see #decrBy(String, int)
* @see #incrBy(String, long)
* @see #decrBy(String, long)
*
* @param 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 #decr(String)
* @see #decrBy(String, int)
* @see #decrBy(String, long)
*
* @param key
* @param integer
@@ -591,9 +591,9 @@ public class Jedis extends BinaryJedis implements JedisCommands {
* <p>
* Time complexity: O(1)
*
* @see #incrBy(String, int)
* @see #incrBy(String, long)
* @see #decr(String)
* @see #decrBy(String, int)
* @see #decrBy(String, long)
*
* @param 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
* elements of the list is O(1).
*
* @see #lindex(String, int)
* @see #lindex(String, long)
*
* @param key
* @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
* 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
* information). If just a single key is specified, then this command
* 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
* 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
* specification for more information). If just a single key is specified,
* then this command produces the same result as {@link #smembers(String)