mirror of
https://github.com/overte-org/overte.git
synced 2025-04-17 08:56:36 +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);
|
||||
|
||||
if (!nodeUUID.isNull() && checkInNode) {
|
||||
if (checkInNode) {
|
||||
NodeType_t throwawayNodeType;
|
||||
HifiSockAddr nodePublicAddress, nodeLocalAddress;
|
||||
|
||||
|
|
Loading…
Reference in a new issue