From 2f620e654bf6c5a2b8c2466d39f6039fec4e3731 Mon Sep 17 00:00:00 2001 From: ericrius1 Date: Mon, 12 Oct 2015 17:37:51 -0700 Subject: [PATCH] Fixed styling --- libraries/entities/src/EntityTreeElement.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libraries/entities/src/EntityTreeElement.cpp b/libraries/entities/src/EntityTreeElement.cpp index 89e8e2d6d8..b95b0ca673 100644 --- a/libraries/entities/src/EntityTreeElement.cpp +++ b/libraries/entities/src/EntityTreeElement.cpp @@ -503,14 +503,13 @@ bool EntityTreeElement::findDetailedRayIntersection(const glm::vec3& origin, con forEachEntity([&](EntityItemPointer entity) { if (entityIdsToInclude.size() > 0) { bool entityInWhiteList = false; - //We only want to search whitelist if there is one, otherwise everything except blacklisted items are valid + // We only want to search whitelist if there is one, otherwise everything except blacklisted items are valid for (int i = 0; i < entityIdsToInclude.size(); i++) { if (entityIdsToInclude.at(i) == entity->getID()) { entityInWhiteList = true; } } if (!entityInWhiteList) { - // qDebug() << "entity not found in whitelist!"; return; } }