range_tombstone_stream: Remove an unused boolean flag.

Signed-off-by: Vladimir Krivopalov <vladimir@scylladb.com>
This commit is contained in:
Vladimir Krivopalov
2018-05-21 17:28:15 -07:00
parent 71471bb322
commit 0cf42e7fd2
2 changed files with 0 additions and 2 deletions

View File

@@ -265,7 +265,6 @@ void range_tombstone_stream::apply(const range_tombstone_list& list, const query
}
void range_tombstone_stream::reset() {
_inside_range_tombstone = false;
_list.clear();
}

View File

@@ -575,7 +575,6 @@ class range_tombstone_stream {
const schema& _schema;
position_in_partition::less_compare _cmp;
range_tombstone_list _list;
bool _inside_range_tombstone = false;
private:
mutation_fragment_opt do_get_next();
public: