Remove unused assignment in db/db_iter.cc

Summary:
"make analyze" complains the assignment is not useful. Remove it.
Closes https://github.com/facebook/rocksdb/pull/1581

Differential Revision: D4241697

Pulled By: siying

fbshipit-source-id: 178f67a
This commit is contained in:
Siying Dong 2016-11-29 09:06:10 -08:00 committed by Facebook Github Bot
parent 4f6e89b1d0
commit b3b875657f

View File

@ -395,7 +395,6 @@ void DBIter::FindNextUserEntryInternal(bool skipping, bool prefix_check) {
num_skipped++; // skip this entry
PERF_COUNTER_ADD(internal_key_skipped_count, 1);
} else {
skipping = false; // ikey > saved_key_, i.e. saved_key_ is skipped
num_skipped = 0;
switch (ikey.type) {
case kTypeDeletion: