Skip to content

Commit

Permalink
Fix @see tags referencing int params that are now long
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsawicki committed Jun 23, 2011
1 parent 6c3ec9f commit 234336b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/main/java/redis/clients/jedis/Jedis.java
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ public Long msetnx(final String... keysvalues) {
*
* @see #incr(String)
* @see #decr(String)
* @see #incrBy(String, int)
* @see #incrBy(String, long)
*
* @param key
* @param integer
Expand Down Expand Up @@ -536,8 +536,8 @@ public Long decrBy(final String key, final long integer) {
* 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
Expand All @@ -564,7 +564,7 @@ public Long decr(final String key) {
*
* @see #incr(String)
* @see #decr(String)
* @see #decrBy(String, int)
* @see #decrBy(String, long)
*
* @param key
* @param integer
Expand All @@ -591,9 +591,9 @@ public Long incrBy(final String key, final long integer) {
* <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
Expand Down Expand Up @@ -1042,7 +1042,7 @@ public String lindex(final String key, final long index) {
* 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
Expand Down Expand Up @@ -1278,7 +1278,7 @@ public Boolean sismember(final String key, final String member) {
/**
* 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
Expand Down Expand Up @@ -1320,7 +1320,7 @@ public Long sinterstore(final String dstkey, final String... keys) {

/**
* 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)
Expand Down

0 comments on commit 234336b

Please sign in to comment.