forked from qt-creator/qt-creator
FileIteratorWrapper: remove redundant if statement
Change-Id: I5b9a50802adc3d2cfc48748235a7cd6ee01fa5a4 Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
@@ -106,9 +106,6 @@ private:
|
|||||||
|
|
||||||
void checkStatus() const
|
void checkStatus() const
|
||||||
{
|
{
|
||||||
if (m_status == State::NotIteratingRoot) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (m_status == State::IteratingRoot) {
|
if (m_status == State::IteratingRoot) {
|
||||||
if (m_baseIterator->hasNext() == false) {
|
if (m_baseIterator->hasNext() == false) {
|
||||||
m_status = State::BaseIteratorEnd;
|
m_status = State::BaseIteratorEnd;
|
||||||
|
Reference in New Issue
Block a user