Skip to content
Snippets Groups Projects
Commit 24690edd authored by Swapnil Bawaskar's avatar Swapnil Bawaskar
Browse files

fixed an NPE.

parent c76f2db7
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,7 @@ public class GemFireClient extends DB {
if (val != null) {
if (fields == null) {
for (String k : val.keySet()) {
result.put(key, new ByteArrayByteIterator(val.get(key)));
result.put(key, new ByteArrayByteIterator(val.get(k)));
}
} else {
for (String field : fields) {
......
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