Skip to content

Commit

Permalink
update to jedis 1.5.0 RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Leibiusky committed Dec 7, 2010
1 parent 02fb3d6 commit 2f83c2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -14,7 +14,7 @@
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>1.4.1-SNAPSHOT</version>
<version>1.5.0-RC2</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/redis/rmq/Nest.java
Expand Up @@ -85,9 +85,9 @@ public Long del() {
return del;
}

public Long exists() {
public boolean exists() {
Jedis jedis = getResource();
Long exists = jedis.exists(key());
Boolean exists = jedis.exists(key());
returnResource(jedis);
return exists;
}
Expand Down

0 comments on commit 2f83c2d

Please sign in to comment.