Removed useless newlines from hashTypeCurrentObject().

This commit is contained in:
antirez 2013-02-15 13:12:55 +01:00
parent 6b9c661838
commit 8853698a6f

View File

@ -384,15 +384,12 @@ robj *hashTypeCurrentObject(hashTypeIterator *hi, int what) {
} else {
dst = createStringObjectFromLongLong(vll);
}
} else if (hi->encoding == REDIS_ENCODING_HT) {
hashTypeCurrentFromHashTable(hi, what, &dst);
incrRefCount(dst);
} else {
redisPanic("Unknown hash encoding");
}
return dst;
}