From 522b23590b3b74d1048c0ade1ec50f745e1f709d Mon Sep 17 00:00:00 2001 From: jsteemann Date: Tue, 12 Jul 2016 17:58:05 +0200 Subject: [PATCH] whitespace removal --- arangod/Indexes/SkiplistIndex.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/arangod/Indexes/SkiplistIndex.cpp b/arangod/Indexes/SkiplistIndex.cpp index 3dcfc5a53b..afeb809046 100644 --- a/arangod/Indexes/SkiplistIndex.cpp +++ b/arangod/Indexes/SkiplistIndex.cpp @@ -254,7 +254,6 @@ bool SkiplistLookupBuilder::next() { return false; } - SkiplistInLookupBuilder::SkiplistInLookupBuilder( Transaction* trx, std::vector>& ops, @@ -529,7 +528,6 @@ TRI_doc_mptr_t* SkiplistIterator::next() { return tmp->document()->document(); } - //////////////////////////////////////////////////////////////////////////////// /// @brief Checks if the interval is valid. It is declared invalid if /// one border is nullptr or the right is lower than left. @@ -553,14 +551,12 @@ bool SkiplistIterator2::intervalValid(Node* left, Node* right) const { return true; } - - //////////////////////////////////////////////////////////////////////////////// /// @brief Reset the cursor //////////////////////////////////////////////////////////////////////////////// void SkiplistIterator2::reset() { - // If _interals is empty at this point + // If _intervals is empty at this point // the cursor does not contain any // document at all. Reset is pointless if (!_intervals.empty()) { @@ -686,7 +682,6 @@ void SkiplistIterator2::initNextInterval() { } } - //////////////////////////////////////////////////////////////////////////////// /// @brief create the skiplist index ////////////////////////////////////////////////////////////////////////////////