Skip to content
Snippets Groups Projects
Commit 4baf500f authored by Zlender's avatar Zlender
Browse files

Fixed typo in RedisClient

parent f6b8a359
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ public class RedisClient extends DB {
public int read(String table, String key, Set<String> fields,
HashMap<String, ByteIterator> result) {
if (fields == null) {
StringByteIteartor.putAllAsByteIterators(result, jedis.hgetAll(key));
StringByteIterator.putAllAsByteIterators(result, jedis.hgetAll(key));
}
else {
String[] fieldArray = (String[])fields.toArray(new String[fields.size()]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment