mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 22:39:18 +02:00
Remove redundant check in if
This commit is contained in:
parent
d49c71d132
commit
90407e2720
1 changed files with 1 additions and 1 deletions
|
@ -734,7 +734,7 @@ void DomainServer::processListRequestPacket(QSharedPointer<NLPacket> packet) {
|
||||||
|
|
||||||
SharedNodePointer checkInNode = limitedNodeList->nodeWithUUID(nodeUUID);
|
SharedNodePointer checkInNode = limitedNodeList->nodeWithUUID(nodeUUID);
|
||||||
|
|
||||||
if (!nodeUUID.isNull() && checkInNode) {
|
if (checkInNode) {
|
||||||
NodeType_t throwawayNodeType;
|
NodeType_t throwawayNodeType;
|
||||||
HifiSockAddr nodePublicAddress, nodeLocalAddress;
|
HifiSockAddr nodePublicAddress, nodeLocalAddress;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue