Skip to content

Commit e58c076

Browse files
authored
Merge pull request #1 from acbin/patch-1
Update AutoComplete.java
2 parents 2fb5d82 + 7fd4522 commit e58c076

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

java/src/main/java/AutoComplete.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ public class AutoComplete {
77
private Jedis client = JedisUtils.getClient();
88

99
public AutoComplete() {
10-
1110
}
1211

1312
/**
@@ -35,4 +34,4 @@ public Set<String> hint(String prefix, long count) {
3534
String key = "auto_complete:" + prefix;
3635
return client.zrevrange(key, 0, count - 1);
3736
}
38-
}
37+
}

0 commit comments

Comments
 (0)